From 8a25cd5e309d4550d8d6ff0886edfc2772a41540 Mon Sep 17 00:00:00 2001 From: Aprillion Date: Sat, 4 Nov 2023 16:28:51 +0100 Subject: [PATCH] fix TS --- app/routes/questions/add.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/questions/add.tsx b/app/routes/questions/add.tsx index 00b5862c..2c57e472 100644 --- a/app/routes/questions/add.tsx +++ b/app/routes/questions/add.tsx @@ -59,7 +59,7 @@ type Props = { title: string relatedQuestions: string[] immediately?: boolean -} & Omit +} & Omit export const AddQuestion = ({title, relatedQuestions, immediately, ...props}: Props) => { const url = '/questions/add'