diff --git a/src/app/components/Characters/CharacterRow.tsx b/src/app/components/Characters/CharacterRow.tsx index d7276a8..7a91a84 100644 --- a/src/app/components/Characters/CharacterRow.tsx +++ b/src/app/components/Characters/CharacterRow.tsx @@ -9,7 +9,7 @@ import { CharacterDialog } from "./CharacterDialog"; import { AccessToken } from "@/types"; import { Box, Button } from "@mui/material"; import { EVE_IMAGE_URL } from "@/const"; -import { CharacterContext } from "@/app/context/Context"; +import { CharacterContext, SessionContext } from "@/app/context/Context"; const StackItem = styled(Stack)(({ theme }) => ({ ...theme.typography.body2, @@ -25,7 +25,7 @@ export const CharacterRow = ({ character }: { character: AccessToken }) => { >(undefined); const { deleteCharacter, updateCharacter } = useContext(CharacterContext); - + const { compactMode } = useContext(SessionContext); return ( {