Skip to content

Commit

Permalink
feat(frontend): rm staging
Browse files Browse the repository at this point in the history
  • Loading branch information
loki344 committed Nov 15, 2024
1 parent 4c5ceaf commit 6002b78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/src/env/map-icrc-data.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { EnvAdditionalIcrcTokens } from '$env/types/env-icrc-additional-token';
import type { EnvTokenSymbol } from '$env/types/env-token-common';
import type { IcInterface } from '$icp/types/ic-token';
import { BETA, PROD, STAGING } from '$lib/constants/app.constants';
import { BETA, PROD } from '$lib/constants/app.constants';
import { nonNullish } from '@dfinity/utils';

/**
Expand All @@ -13,7 +13,7 @@ export const mapIcrcData = (
Object.entries(icrcTokens).reduce(
(acc, [key, value]) => ({
...acc,
...((STAGING || BETA || PROD) &&
...((BETA || PROD) &&
nonNullish(value) && {
[key]: {
...value,
Expand Down

0 comments on commit 6002b78

Please sign in to comment.