Skip to content

Commit

Permalink
refactor: as temporary precaution, we disable non-ICRC manage toggle (#…
Browse files Browse the repository at this point in the history
…1509)

* refactor: as temporary precaution, we disable non-ICRC manage toggle

* fix: modified comment according to review
  • Loading branch information
AntonioVentilii-DFINITY authored Jun 21, 2024
1 parent 4759a9f commit 3141c6c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
export let token: DisplayToken;
let disabled = false;
$: disabled = token.category === 'default';
// TODO: set to false and uncomment once we are OK with flow of show/hide ERC20 tokens
let disabled = true;
// $: disabled = !['icrc', 'erc20'].includes(token.standard);
let checked: boolean;
$: checked = token.show ?? false;
Expand Down

0 comments on commit 3141c6c

Please sign in to comment.