Skip to content

Commit

Permalink
fix(fm): close dialog after upload completed (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
uubulb authored Jan 7, 2025
1 parent fb681b6 commit 53a937a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/fm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ const FMComponent: React.FC<FMProps & JSX.IntrinsicElements["div"]> = ({ wsUrl,
setFMEntries(fmList)
} else if (arraysEqual(identifier, FMIdentifier.complete)) {
// Upload completed
if (uOpen) setuOpen(false)
setuOpen(false)
listFile()
} else {
throw new Error(t("Results.UnknownIdentifier"))
Expand Down

0 comments on commit 53a937a

Please sign in to comment.