Skip to content

Commit

Permalink
fix TS
Browse files Browse the repository at this point in the history
  • Loading branch information
Aprillion committed Nov 4, 2023
1 parent ec86044 commit 8a25cd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/questions/add.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ type Props = {
title: string
relatedQuestions: string[]
immediately?: boolean
} & Omit<JSX.IntrinsicElements['form'], 'method' | 'ref'>
} & Omit<JSX.IntrinsicElements['form'], 'method' | 'ref' | 'encType'>

export const AddQuestion = ({title, relatedQuestions, immediately, ...props}: Props) => {
const url = '/questions/add'
Expand Down

0 comments on commit 8a25cd5

Please sign in to comment.