Skip to content

Commit da544e1

Browse files
committed
Merge branch 'main' into release-next
2 parents d3abdc3 + 11156ac commit da544e1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/no-response.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: 🥺 Handle Ghosting
18-
uses: actions/stale@v6
18+
uses: actions/stale@v7
1919
with:
2020
days-before-close: 10
2121
close-issue-message: >

contributors.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
- dokeet
4242
- Drishtantr
4343
- edwin177
44+
- ek9
4445
- ekaansharora
4546
- elanis
4647
- elylucas

docs/start/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ export async function action({ request, params }) {
878878

879879
👉 **Wire the action up to the route**
880880

881-
```jsx filename=src/routes/main.jsx lines=[3,23]
881+
```jsx filename=src/main.jsx lines=[3,23]
882882
/* existing code */
883883
import EditContact, {
884884
action as editAction,
@@ -1840,7 +1840,7 @@ Whenever you have an expected error case in a loader or action–like the data n
18401840

18411841
👉 **Throw a 404 response in the loader**
18421842

1843-
```jsx filename=src/routes/contact.jsx lines lines=[3-8]
1843+
```jsx filename=src/routes/contact.jsx lines=[3-8]
18441844
export async function loader({ params }) {
18451845
const contact = await getContact(params.contactId);
18461846
if (!contact) {

0 commit comments

Comments
 (0)