Skip to content

Commit 977af13

Browse files
committed
Merge branch 'feature/#1-create-dashboard-page' into feature/#3-create-card-page
2 parents 66fcecf + 9369bb1 commit 977af13

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pods/card/card.pod.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import { useParams } from '@tanstack/react-router';
33
import { CardComponent } from './card-component';
44

5-
export const DeckPod: React.FC = () => {
5+
export const CardPod: React.FC = () => {
66
const { deckId } = useParams({ strict: false });
77

88
return (
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createFileRoute } from '@tanstack/react-router';
2-
import { DeckPod } from '#pods/card/index.ts';
2+
import { CardPod } from '#pods/card/index.ts';
33

44
export const Route = createFileRoute('/_auth/dashboard/card/$deckId/')({
5-
component: DeckPod,
5+
component: CardPod,
66
})

0 commit comments

Comments
 (0)