Skip to content

Commit

Permalink
aaa
Browse files Browse the repository at this point in the history
  • Loading branch information
sneko committed Feb 20, 2024
1 parent 3018a14 commit dd17e5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
/data/
/dist/
/public/mockServiceWorker.js
/src/server/trpc-next-layout/**/*.ts
/src/server/trpc-next-layout/**/*.tsx
/src/**/*.docx
/src/**/*.transformed.html
**/.dockerignore
Expand Down
2 changes: 1 addition & 1 deletion src/app/(public)/assistant/RequestAssistantForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function RequestAssistantForm(props: RequestAssistantFormProps) {
if (props.prefill?.sessionId) {
setValue('sessionId', props.prefill.sessionId);
}
}, [props.prefill?.sessionId]);
}, [props.prefill?.sessionId, setValue]);

const onSubmit = async (input: RequestAssistantSchemaType) => {
// If it's already running, quit
Expand Down

0 comments on commit dd17e5b

Please sign in to comment.