Skip to content

Commit 745ec79

Browse files
committed
chore: run prettier on annotations changes
1 parent 946ae96 commit 745ec79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/annotations/components/annotationForm/AnnotationForm.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export const AnnotationForm: FC<Props> = (props: Props) => {
140140
}
141141

142142
try {
143-
await dispatch(deleteAnnotations(editedAnnotation))
143+
dispatch(deleteAnnotations(editedAnnotation))
144144
event(`annotations.delete_annotation.success`, {
145145
prefix: props.eventPrefix,
146146
})

Diff for: src/flows/context/flow.list.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export const FlowListProvider: FC = ({children}) => {
239239

240240
return flow.id
241241
})
242-
.catch((err) => {
242+
.catch(err => {
243243
dispatch(notify(notebookCreateFail(getErrorMessage(err))))
244244
})
245245
}

0 commit comments

Comments
 (0)