Skip to content

Commit

Permalink
fix async method
Browse files Browse the repository at this point in the history
  • Loading branch information
Feroze Mohideen committed May 6, 2024
1 parent 6dacc3d commit ca15417
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const Settings: React.FC = () => {
}
};

const handleDeletionClick = async (): Promise<void> => {
const handleDeletionClick = (): void => {
setCurrentOverlay({
message: `Are you sure you want to delete ${addon.name.value}?`,
onYes: handleDeletionSubmit,
Expand Down

0 comments on commit ca15417

Please sign in to comment.