Skip to content

Commit

Permalink
update prod env
Browse files Browse the repository at this point in the history
  • Loading branch information
viet-nv committed Jan 31, 2024
1 parent b2ed126 commit c7fe712
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function InboxItemBridge({
const isPartialFilled = status === LimitOrderStatus.PARTIALLY_FILLED
const chainId = rawChainId && rawChainId !== '{{.chainId}}' ? (Number(rawChainId) as ChainId) : undefined
const statusMessage = isReorg
? t`Reverted (${increasedFilledPercent})`
? t`Reverted ${increasedFilledPercent}`
: isFilled
? t`100% Filled`
: isPartialFilled
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function AnnouncementItem({

const statusMessage = isReorg ? (
<Text as="span" color={theme.red}>
reverted ({increasedFilledPercent})
reverted {increasedFilledPercent}
</Text>
) : isFilled ? (
<Text as="span" color={theme.primary}>
Expand Down
4 changes: 2 additions & 2 deletions src/constants/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,12 @@ const ANNOUNCEMENT_TEMPLATE_IDS: { [key in EnvKeys]: TemplateConfig } = {
},
production: {
[PrivateAnnouncementType.PRICE_ALERT]: '29',
[PrivateAnnouncementType.LIMIT_ORDER]: '12,13,14,15',
[PrivateAnnouncementType.LIMIT_ORDER]: '12,13,14,15,31',
[PrivateAnnouncementType.BRIDGE_ASSET]: '10,11',
[PrivateAnnouncementType.CROSS_CHAIN]: '27,28',
[PrivateAnnouncementType.ELASTIC_POOLS]: '17,18',
[PrivateAnnouncementType.DIRECT_MESSAGE]: '',
EXCLUDE: '2,16,19,9,25,24,21,22',
EXCLUDE: '2,16,19,9,25,24,21,22,25,26,30',
},
}

Expand Down

0 comments on commit c7fe712

Please sign in to comment.