Skip to content

Commit

Permalink
️🦚🍽️ ↝ [SGV2-16]: Experimenting with layouts and classnames
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizmotronn committed Apr 19, 2024
1 parent f07dcb5 commit 1f3bbf6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/Content/Classify/AnomalyPostFormCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ClimbingBoxLoader } from "react-spinners";
export default function PostFormCardAnomalyTag({ onPost, planetId }) {
const supabase = useSupabaseClient();
const session = useSession();

const [content, setContent] = useState('');
const profile = session?.user?.id;
const [avatar_url, setAvatarUrl] = useState(null);
Expand Down
2 changes: 1 addition & 1 deletion components/_Core/Section/BentoBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ const items = [
),
icon: RocketIcon,
header: <OwnedStructuresFullList />,
className: "md:col-span-1",
className: "md:col-span-2 h-[150%]"
},
];
6 changes: 3 additions & 3 deletions components/_Skeleton/InventoryBlocks.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useSession, useSupabaseClient } from "@supabase/auth-helpers-react";
import OwnedItemsList, { ItemsVerticalList } from "../Content/Inventory/UserOwnedItems";
import OwnedItemsList, { ItemsVerticalList, SectorStructureOwned } from "../Content/Inventory/UserOwnedItems";
import { useEffect, useState } from "react";

const SectorStructureOwnedAllSectorsOneUser: React.FC<{}> = () => {
Expand Down Expand Up @@ -94,7 +94,7 @@ export const InventoryTwoList = () => {

export const OwnedStructuresFullList = () => {
return (
// <SectorStructureOwned />
<SectorStructureOwnedAllSectorsOneUser />
<SectorStructureOwned sectorid="18" />
// <SectorStructureOwnedAllSectorsOneUser />
);
};

0 comments on commit 1f3bbf6

Please sign in to comment.