diff --git a/web/src/pages/Explore.tsx b/web/src/pages/Explore.tsx index 9959b298..88f48fde 100644 --- a/web/src/pages/Explore.tsx +++ b/web/src/pages/Explore.tsx @@ -44,22 +44,22 @@ const Explore = () => { return (
- {loadingState.isLoading ? null : ( -
-
- -
- {user ? ( - - ) : ( - - )} -
+
+
+ +
+ {user ? ( + + ) : ( + + )}
+
+ {loadingState.isLoading ? null : (
{state.memos.map((memo) => { const createdAtStr = dayjs(memo.createdTs).locale(locale).format("YYYY/MM/DD HH:mm:ss"); @@ -78,8 +78,8 @@ const Explore = () => { ); })}
-
- )} + )} +
); };