Fix build

This commit is contained in:
Zsombor Gegesy
2024-03-09 12:33:49 +01:00
parent befc5a67fc
commit 71d3cea100
2 changed files with 3 additions and 3 deletions

View File

@ -182,11 +182,11 @@ export const ImportDialog = () => {
}
close();
} catch (error) {
} catch (error: any) {
toast({
variant: "error",
title: t`Oops, the server returned an error.`,
description: error?.message,
description: error["message"],
});
}
};