diff --git a/src/dashboardWebView/components/DataView/DataView.tsx b/src/dashboardWebView/components/DataView/DataView.tsx index 27e087a6..3b8204e6 100644 --- a/src/dashboardWebView/components/DataView/DataView.tsx +++ b/src/dashboardWebView/components/DataView/DataView.tsx @@ -128,10 +128,10 @@ export const DataView: React.FunctionComponent = (props: React.P }).filter(d => d !== null) as DataFile[]; return ( -
+
-
+
diff --git a/src/dashboardWebView/components/SponsorMsg.tsx b/src/dashboardWebView/components/SponsorMsg.tsx index b5a610a9..a810c72d 100644 --- a/src/dashboardWebView/components/SponsorMsg.tsx +++ b/src/dashboardWebView/components/SponsorMsg.tsx @@ -10,23 +10,24 @@ export interface ISponsorMsgProps { } export const SponsorMsg: React.FunctionComponent = ({beta, isBacker, version}: React.PropsWithChildren) => { - if (isBacker) { - return ( -

- Front Matter{version ? ` (v${version.installedVersion}${!!beta ? ` BETA` : ''})` : ''} -

- ); - } return ( -

- - Support - - Front Matter{version ? ` (v${version.installedVersion}${!!beta ? ` BETA` : ''})` : ''} - - Review - +

+ { + isBacker ? ( + Front Matter{version ? ` (v${version.installedVersion}${!!beta ? ` BETA` : ''})` : ''} + ) : ( + <> + + Support + + Front Matter{version ? ` (v${version.installedVersion}${!!beta ? ` BETA` : ''})` : ''} + + Review + + + ) + }

); }; \ No newline at end of file