diff --git a/frontend/src/components/Status/index.tsx b/frontend/src/components/Status/index.tsx index 202840b..65daf0e 100644 --- a/frontend/src/components/Status/index.tsx +++ b/frontend/src/components/Status/index.tsx @@ -26,7 +26,7 @@ export default component$((props: Props) => {
- +
{/* TODO: this should either have an href or not being an `a` element (also consider using QwikCity's `Link` instead) */} diff --git a/frontend/src/components/avatar/index.tsx b/frontend/src/components/avatar/index.tsx index bc6d749..1d17457 100644 --- a/frontend/src/components/avatar/index.tsx +++ b/frontend/src/components/avatar/index.tsx @@ -2,8 +2,9 @@ import { component$ } from '@builder.io/qwik' type Props = { src: string + accountDisplayName: string } -export const Avatar = component$(({ src }) => { - return +export const Avatar = component$(({ src, accountDisplayName }) => { + return {`Avatar }) diff --git a/frontend/src/routes/(frontend)/[accountId]/[statusId]/index.tsx b/frontend/src/routes/(frontend)/[accountId]/[statusId]/index.tsx index b97ab91..d4f9cd8 100644 --- a/frontend/src/routes/(frontend)/[accountId]/[statusId]/index.tsx +++ b/frontend/src/routes/(frontend)/[accountId]/[statusId]/index.tsx @@ -36,7 +36,7 @@ export default component$(() => {
{/* Account Card */}
- +
{/* TODO: this should either have an href or not being an `a` element (also consider using QwikCity's `Link` instead) */}