-
Notifications
You must be signed in to change notification settings - Fork 452
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(AccountModal): add purchase history menu item * rebase with latest changes * connect to backend * use copyable address component * TEMP: forgot rebase process * fix build errors * remove introduced default exports * fix: run biome check * feat(PurchaseHistoryDrawer): download receipts * feat: initialize order verification on NFT mint * refactor: include billing service types * fix(RequirementAccessIndicatorUI): exclude `red` color scheme * refactor: move prettyDate to a util * fix(useOrders): don't revalidate on mount * refactor: simplify PurchaseHistoryDrawer * temp: use the dev api * chore: run biome check * fix: remove deprecated requirement components * fix(useOrders): dynamic revalidateOnMount value * fix: don't use custom rpc for sepolia * fix: update the types package * feat: limit order download to supported countries * reset env to prod backend api * fix: order fetching on drawer open --------- Co-authored-by: BrickheadJohnny <[email protected]>
- Loading branch information
1 parent
024c478
commit a1ebe6e
Showing
27 changed files
with
1,383 additions
and
167 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
export const SupportedCountryCodes = [ | ||
"AT", | ||
"BE", | ||
"BG", | ||
"CY", | ||
"CZ", | ||
"DE", | ||
"DK", | ||
"EE", | ||
"EL", | ||
"ES", | ||
"FI", | ||
"FR", | ||
"HR", | ||
"HU", | ||
"IE", | ||
"IT", | ||
"LT", | ||
"LU", | ||
"LV", | ||
"MT", | ||
"NL", | ||
"PL", | ||
"PT", | ||
"RO", | ||
"SE", | ||
"SI", | ||
"SK", | ||
] as const | ||
export type SupportedCountryCode = (typeof SupportedCountryCodes)[number] |
Oops, something went wrong.