diff --git a/src/components/Feed/Row2.tsx b/src/components/Feed/Row2.tsx index 81be784c..6a6d52cb 100644 --- a/src/components/Feed/Row2.tsx +++ b/src/components/Feed/Row2.tsx @@ -19,29 +19,31 @@ export const Row2 = (props: { createComputed(() => setY(Math.floor(Math.random() * x.length))) return ( -
-
-
- - {(a, i) => { - return ( - -
- -
-
- ) - }} -
+ 0}> +
+
+
+ + {(a, i) => { + return ( + +
+ +
+
+ ) + }} +
+
-
+ ) } diff --git a/src/components/Feed/Row3.tsx b/src/components/Feed/Row3.tsx index 2a352b21..22890d24 100644 --- a/src/components/Feed/Row3.tsx +++ b/src/components/Feed/Row3.tsx @@ -1,5 +1,5 @@ import type { JSX } from 'solid-js/jsx-runtime' -import { For } from 'solid-js' +import { For, Show } from 'solid-js' import type { Shout } from '../../graphql/types.gen' import { ArticleCard } from './ArticleCard' @@ -10,22 +10,24 @@ export const Row3 = (props: { noAuthorLink?: boolean }) => { return ( -
-
-
-
{props.header}
- - {(a) => ( -
- -
- )} -
+ 0}> +
+
+
+
{props.header}
+ + {(a) => ( +
+ +
+ )} +
+
-
+ ) }