Skip to content

Commit

Permalink
Fix error display
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibautBremand committed Nov 21, 2023
1 parent 40a4277 commit 6c15470
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const BuildTransaction: FC = () => {
const { getCurrentWallet } = useWallet();
const { hasOfflineBanner } = useNetwork();
const editorHeight = useMemo(() => {
return hasOfflineBanner ? '280px' : '340px';
return hasOfflineBanner ? '250px' : '310px';
}, [hasOfflineBanner]);

const navigate = useNavigate();
Expand Down

0 comments on commit 6c15470

Please sign in to comment.