Skip to content

Commit

Permalink
chore: AnswerFormの移動先が間違っていたので移動する
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed May 22, 2024
1 parent d53ebc8 commit 4bd8c79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {
} from '@mui/material';
import { useState } from 'react';
import { useForm } from 'react-hook-form';
import type { FormQuestion } from '../../../../../_schemas/formSchema';
import type { FormQuestion } from '../../../../../../_schemas/formSchema';
import type { NonEmptyArray } from '@/generic/Types';

interface Props {
Expand Down
2 changes: 1 addition & 1 deletion src/app/(authed)/(standard)/forms/[formId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { redirect } from 'next/navigation';
import useSWR from 'swr';
import AnswerForm from './AnswerForm';
import AnswerForm from './_components/AnswerForm';
import type { GetQuestionsResponse } from '@/app/api/_schemas/ResponseSchemas';

const Home = ({ params }: { params: { formId: number } }) => {
Expand Down

0 comments on commit 4bd8c79

Please sign in to comment.