Skip to content

Commit

Permalink
fix next path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
OR13 committed Apr 15, 2024
1 parent 2f1a646 commit 5dc7e76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

import Preview from "@/components/Preview";
import Theme from "@/components/Theme";
import Preview from "../components/Preview";
import Theme from "../components/Theme";
export default function Home() {
return (
<Theme>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Preview/Preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as React from 'react';
import { Box, TextField } from '@mui/material'

import * as edn from '@transmute/edn'
import Fragment from '@/services/Fragment';
import Fragment from '../../services/Fragment';
import FileUploader from '../FileUploader';

import { useRouter } from 'next/navigation';
Expand Down

0 comments on commit 5dc7e76

Please sign in to comment.