Skip to content

Commit

Permalink
Fix paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
robol committed Dec 4, 2024
1 parent 55d8a62 commit 63fdfe4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions app/admin/cost/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import Error from '../../components/Error'
import SetCost from '../../components/SetCost'
import {myDate, myTime} from '../../utils'
import Table from '../../components/Table'
import Thead from '@/app/components/Thead'
import Td from '@/app/components/Td'
import Th from '@/app/components/Th'
import Tr from '@/app/components/Tr'
import Thead from '../../components/Thead'
import Td from '../../components/Td'
import Th from '../../components/Th'
import Tr from '../../components/Tr'

export default function CostPage({}) {
return <Provider>
Expand Down
10 changes: 5 additions & 5 deletions app/admin/import/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import Button from '../../components/Button'
import Loading from '../../components/Loading'
import Error from '../../components/Error'
import { myDate } from '../../utils'
import Table from '@/app/components/Table'
import Thead from '@/app/components/Thead'
import Th from '@/app/components/Th'
import Tr from '@/app/components/Tr'
import Td from '@/app/components/Td'
import Table from '../../components/Table'
import Thead from '../../components/Thead'
import Th from '../../components/Th'
import Tr from '../../components/Tr'
import Td from '../../components/Td'

const SAVE_TRANSACTION = gql`
mutation SaveTransaction($_id: String, $timestamp: String, $email: String, $count: Int, $amountCents: Int, $description: String) {
Expand Down
10 changes: 5 additions & 5 deletions app/admin/users/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import Loading from '../../components/Loading'
import Error from '../../components/Error'
import Amount from '../../components/Amount'
import {myDate, myTime} from '../../utils'
import Table from '@/app/components/Table'
import Thead from '@/app/components/Thead'
import Th from '@/app/components/Th'
import Tr from '@/app/components/Tr'
import Td from '@/app/components/Td'
import Table from '../../components/Table'
import Thead from '../../components/Thead'
import Th from '../../components/Th'
import Tr from '../../components/Tr'
import Td from '../../components/Td'

export default function UsersPage({}) {
return <Provider>
Expand Down

0 comments on commit 63fdfe4

Please sign in to comment.