aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/infobox/index.tsx
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-04-23 06:52:24 -0500
committerLibravatar GitHub <noreply@github.com>2022-04-23 11:52:24 +0000
commit0c322a7a4ce2474be69a70823ba5f1ea83162e9c (patch)
tree325040af714bb70067c25662392babc7d3e23108 /src/components/ui/infobox/index.tsx
parentUpdate the build script for Windows (Powershell) and normalized with the unix... (diff)
downloadferdium-app-0c322a7a4ce2474be69a70823ba5f1ea83162e9c.tar.gz
ferdium-app-0c322a7a4ce2474be69a70823ba5f1ea83162e9c.tar.zst
ferdium-app-0c322a7a4ce2474be69a70823ba5f1ea83162e9c.zip
Update node modules (#31)
* Suppress eslint rules as warnings (dont turn off completely)
Diffstat (limited to 'src/components/ui/infobox/index.tsx')
-rw-r--r--src/components/ui/infobox/index.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/ui/infobox/index.tsx b/src/components/ui/infobox/index.tsx
index d4ff61053..9635941cc 100644
--- a/src/components/ui/infobox/index.tsx
+++ b/src/components/ui/infobox/index.tsx
@@ -14,7 +14,6 @@ interface IProps extends WithStylesProps<typeof styles> {
14 onUnmount?: () => void; 14 onUnmount?: () => void;
15 ctaOnClick?: () => void; 15 ctaOnClick?: () => void;
16 ctaLabel?: string; 16 ctaLabel?: string;
17 ctaLoading?: boolean;
18 children: ReactNode; 17 children: ReactNode;
19 className: string; 18 className: string;
20} 19}
@@ -115,7 +114,6 @@ class InfoboxComponent extends Component<IProps, IState> {
115 ctaOnClick: () => {}, 114 ctaOnClick: () => {},
116 onDismiss: () => {}, 115 onDismiss: () => {},
117 ctaLabel: '', 116 ctaLabel: '',
118 ctaLoading: false,
119 }; 117 };
120 118
121 state = { 119 state = {