Skip to content

Commit

Permalink
chore: fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed Nov 12, 2023
1 parent bbe2bdf commit e89358c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/web/src/components/CreateCollectionDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const CreateCollectionDialog: React.FC<Props> = (props: Props) => {
}
} catch (error: any) {
console.error(error);
toast.error(error.response.data.message);
toast.error(error.details);
}
};

Expand Down

0 comments on commit e89358c

Please sign in to comment.