Skip to content

Commit

Permalink
Update common.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
devinep52 authored Nov 30, 2023
1 parent 7fffdfb commit 0e9f0fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/utils/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export const currentChainSupportsDex = () => {

export const currentChainSupportsDrawbridge = () => {
const currentChain = localStorage.getItem('currentChain') ?? '';
return currentChain === 'SKALE' || currentChain === 'BNB' || currentChain === 'METER';
return currentChain === 'SKALE' || currentChain === 'BNB' || currentChain === 'METER' || currentChain === 'CRONOS';
};

export const getTimeRemaining = (end: string) => {
Expand Down

0 comments on commit 0e9f0fe

Please sign in to comment.