-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [IOBP-930] Remove payments redirect banner from wallet (#6316)
## Short description This pull request removes the banner that prompts users to go to the payments section when they want to pay a notice from the wallet screen. ## List of changes proposed in this pull request - Delete `WalletPaymentsRedirectBanner` component and its redux variable ## How to test - Navigate to the Portafoglio (Wallet) section. - Verify that the banner prompting for payment redirection no longer appears. --------- Co-authored-by: Alessandro <alessandro.izzo998@gmail.com>
- Loading branch information
1 parent
5af3ad0
commit 5c6bf7c
Showing
7 changed files
with
16 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 0 additions & 55 deletions
55
ts/features/newWallet/components/WalletPaymentsRedirectBanner.tsx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
import { ActionType, createStandardAction } from "typesafe-actions"; | ||
import { WalletCardCategoryFilter } from "../../types"; | ||
|
||
export const walletSetPaymentsRedirectBannerVisible = createStandardAction( | ||
"WALLET_SET_PAYMENTS_REDIRECT_BANNER_VISIBLE" | ||
)<boolean>(); | ||
|
||
export const walletSetCategoryFilter = createStandardAction( | ||
"WALLET_SET_CATEGORY_FILTER" | ||
)<WalletCardCategoryFilter | undefined>(); | ||
|
||
export type WalletPreferencesActions = | ||
| ActionType<typeof walletSetPaymentsRedirectBannerVisible> | ||
| ActionType<typeof walletSetCategoryFilter>; | ||
export type WalletPreferencesActions = ActionType< | ||
typeof walletSetCategoryFilter | ||
>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters