Skip to content

Commit 0741bc0

Browse files
committed
Update create-your-first-crud.mdx
1 parent ddfb2e8 commit 0741bc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pages/tutorials/create-your-first-crud.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ export const projectsRouter = createTRPCRouter({
637637
To prevent raw string urls all over our files, we are creating a `routes.ts` file in the `src/features/projects` folder.
638638
This file will have all the available urls of our `projects` feature.
639639

640-
```tsx filename="src/features/projects/PageAdminProjects.tsx" showLineNumbers
640+
```tsx filename="src/features/projects/route.js" showLineNumbers
641641
import { ROUTES_ADMIN } from "@/features/admin/routes";
642642

643643
export const ROUTES_PROJECTS = {
@@ -1006,7 +1006,7 @@ First, let's add the `SearchInput` component in the UI.
10061006

10071007
```tsx {1, 12-16, 20-21} filename="src/features/projects/PageAdminProjects.tsx" showLineNumbers
10081008
import { SearchInput } from "@/components/SearchInput";
1009-
1009+
import {/* ... */, Flex} from '@chakra-ui/react';
10101010
/* ... */
10111011

10121012
export default function PageAdminProjects() {

0 commit comments

Comments
 (0)