Skip to content

Commit

Permalink
merge with rebrand
Browse files Browse the repository at this point in the history
  • Loading branch information
jvonasek committed Jun 5, 2024
1 parent a0eaf7e commit ef870de
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ VITE_EVM_CHAIN_ID=222222
VITE_EVM_PROVIDER_URL=https://rpc.nice.hydration.cloud
VITE_EVM_EXPLORER_URL=https://explorer.nice.hydration.cloud
VITE_EVM_NATIVE_ASSET_ID=20
VITE_MIGRATION_TRIGGER_DOMAIN="testnet-app.hydradx.io"
VITE_MIGRATION_TARGET_DOMAIN="deploy-preview-1334--testnet-hydra-app.netlify.app"
VITE_MIGRATION_TRIGGER_DOMAIN="deploy-preview-1334--testnet-hydra-app.netlify.app"
VITE_MIGRATION_TARGET_DOMAIN="testnet-app.hydradx.io"

2 changes: 1 addition & 1 deletion src/sections/migration/MigrationProvider.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const MIGRATION_TRIGGER_DOMAIN = import.meta.env
.VITE_MIGRATION_TRIGGER_DOMAIN as string

export const MIGRATION_TARGET_DOMAIN = import.meta.env
.VITE_MIGRATION_TARGET_DOMAIN
.VITE_MIGRATION_TARGET_DOMAIN as string

export const serializeLocalStorage = (keys: string[]): string => {
const data: { [key: string]: any } = {}
Expand Down
4 changes: 2 additions & 2 deletions src/sections/migration/components/MigrationExportModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export const MigrationExportModal: FC<{
const { t } = useTranslation()

return (
<Modal open headerVariant="FontOver">
<Modal open headerVariant="GeistMono">
<MigrationLogo sx={{ mx: "auto" }} />
<Text tAlign="center" font="FontOver" fs={19} sx={{ mt: 12 }}>
<Text tAlign="center" font="GeistMono" fs={19} sx={{ mt: 12 }}>
{t("migration.export.title")}
</Text>
<Text
Expand Down
4 changes: 2 additions & 2 deletions src/sections/migration/components/MigrationImportModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ export const MigrationImportModal: FC<{ data?: string }> = ({ data }) => {
}

return (
<Modal open headerVariant="FontOver">
<Modal open headerVariant="GeistMono">
<MigrationLogo sx={{ mx: "auto" }} />
<Text tAlign="center" font="FontOver" fs={19} sx={{ mt: 12 }}>
<Text tAlign="center" font="GeistMono" fs={19} sx={{ mt: 12 }}>
{t("migration.import.title")}
</Text>
<Text
Expand Down

0 comments on commit ef870de

Please sign in to comment.