Skip to content

Commit

Permalink
chore: run prettier on annotations changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wdoconnell committed Aug 20, 2024
1 parent 946ae96 commit 745ec79
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 @@ -140,7 +140,7 @@ export const AnnotationForm: FC<Props> = (props: Props) => {
}

try {
await dispatch(deleteAnnotations(editedAnnotation))
dispatch(deleteAnnotations(editedAnnotation))
event(`annotations.delete_annotation.success`, {
prefix: props.eventPrefix,
})
Expand Down
2 changes: 1 addition & 1 deletion src/flows/context/flow.list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export const FlowListProvider: FC = ({children}) => {

return flow.id
})
.catch((err) => {
.catch(err => {
dispatch(notify(notebookCreateFail(getErrorMessage(err))))
})
}
Expand Down

0 comments on commit 745ec79

Please sign in to comment.