Skip to content

Commit

Permalink
fix: string conversion
Browse files Browse the repository at this point in the history
Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com>
  • Loading branch information
axel7083 committed Jan 4, 2024
1 parent ffac09d commit 4184d36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/renderer/src/lib/image/ImageActions.svelte
Expand Up @@ -52,7 +52,7 @@ async function deleteImage(): Promise<void> {
try {
await imageUtils.deleteImage(image);
} catch (error) {
onError(`Error while deleting image: ${error}`);
onError(`Error while deleting image: ${String(error)}`);
}
}
Expand Down

0 comments on commit 4184d36

Please sign in to comment.