diff --git a/packages/starksheet-webapp/src/components/SaveButton/SaveButton.tsx b/packages/starksheet-webapp/src/components/SaveButton/SaveButton.tsx index 6c2cad99..8d9c7283 100644 --- a/packages/starksheet-webapp/src/components/SaveButton/SaveButton.tsx +++ b/packages/starksheet-webapp/src/components/SaveButton/SaveButton.tsx @@ -19,7 +19,10 @@ function SaveButton({ currentCellOwnerAddress, error, sx }: SaveButtonProps) { const { accountAddress } = useContext(AccountContext); const [loading, setLoading] = useState(false); - const cost = useMemo(() => (costEth > 0 ? ` (${costEth})` : ""), [costEth]); + const cost = useMemo( + () => (costEth > 0 ? ` (${costEth}ETH)` : ""), + [costEth] + ); const onClick = useCallback(async () => { if (transactions.length === 0) { @@ -55,7 +58,7 @@ function SaveButton({ currentCellOwnerAddress, error, sx }: SaveButtonProps) {