diff options
author | Fred Carlsen <fred@sjelfull.no> | 2018-12-14 18:26:59 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-14 18:34:14 +0800 |
commit | 66480ccb1e0dc72e6716060ab472b7584bfa910c (patch) | |
tree | ae43b6ac036cbf7d956f9da02a14e43af301b854 /packages/website/ts/@next/components/blockIconLink.tsx | |
parent | 7a10f034960b0cbb0d39b2680e69f58e5c19ea61 (diff) | |
download | dexon-sol-tools-66480ccb1e0dc72e6716060ab472b7584bfa910c.tar.gz dexon-sol-tools-66480ccb1e0dc72e6716060ab472b7584bfa910c.tar.zst dexon-sol-tools-66480ccb1e0dc72e6716060ab472b7584bfa910c.zip |
Linting fixes
Diffstat (limited to 'packages/website/ts/@next/components/blockIconLink.tsx')
-rw-r--r-- | packages/website/ts/@next/components/blockIconLink.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/ts/@next/components/blockIconLink.tsx b/packages/website/ts/@next/components/blockIconLink.tsx index 7033ec88d..0e97aed1a 100644 --- a/packages/website/ts/@next/components/blockIconLink.tsx +++ b/packages/website/ts/@next/components/blockIconLink.tsx @@ -8,8 +8,8 @@ interface Props { icon: string; title: string; linkLabel: string; - linkUrl: string; - linkAction: () => void; + linkUrl?: string; + linkAction?: () => void; } export const BlockIconLink = (props: Props) => ( |