diff options
| author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-28 02:32:54 +0800 |
|---|---|---|
| committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-28 02:32:54 +0800 |
| commit | 435e62a94df3d98e8321f5ecc3a984b495313f92 (patch) | |
| tree | 8bd5bc592f345844b4649c635de31b80cf809a21 | |
| parent | d23fd23e912ef2ca646048e2df70e2c016ce9986 (diff) | |
| download | dexon-sol-tools-435e62a94df3d98e8321f5ecc3a984b495313f92.tar.gz dexon-sol-tools-435e62a94df3d98e8321f5ecc3a984b495313f92.tar.zst dexon-sol-tools-435e62a94df3d98e8321f5ecc3a984b495313f92.zip | |
fix(instant): Fix copy to clipboard
| -rw-r--r-- | packages/instant/src/components/payment_method_dropdown.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/components/payment_method_dropdown.tsx b/packages/instant/src/components/payment_method_dropdown.tsx index b330dbcd6..0226d1f01 100644 --- a/packages/instant/src/components/payment_method_dropdown.tsx +++ b/packages/instant/src/components/payment_method_dropdown.tsx @@ -1,5 +1,5 @@ import { BigNumber } from '@0x/utils'; -import copy from 'copy-to-clipboard'; +import * as copy from 'copy-to-clipboard'; import * as React from 'react'; import { Network } from '../types'; |
