Skip to content

Commit

Permalink
add a specific resource fee error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeesun Kim authored and Jeesun Kim committed Feb 3, 2025
1 parent a686ca1 commit 65609a5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/FormElements/ResourceFeePickerWithQuery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ export const ResourceFeePickerWithQuery = ({
}
return builtXdr;
} catch (e) {
setErrorMessage(`${e}`);
setErrorMessage(
`Something went wrong when calculating a resource fee: ${e}`,
);
return;
}
};
Expand Down

0 comments on commit 65609a5

Please sign in to comment.