Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(wallet): review back buttons #4620

Merged
merged 5 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,7 @@ function DisconnectApp({
return null;
}
return (
<Overlay
showBackButton
showModal
setShowModal={setShowDisconnectApp}
title="Active Connection"
>
<Overlay showModal setShowModal={setShowDisconnectApp} title="Active Connection">
<div className="flex max-w-full flex-1 flex-col flex-nowrap items-stretch gap-y-md">
<DAppInfoCard name={name} iconUrl={icon} url={link} />

Expand Down
1 change: 0 additions & 1 deletion apps/wallet/src/ui/app/pages/home/receipt/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ function ReceiptPage() {
title={pageTitle}
closeOverlay={closeReceipt}
closeIcon={<Checkmark fill="currentColor" className="text-iota-light h-8 w-8" />}
showBackButton
>
{isError ? (
<div className="mb-2 flex h-full w-full items-center justify-center p-2">
Expand Down
Loading