Skip to content

Commit

Permalink
Fixed Flex Direction Type
Browse files Browse the repository at this point in the history
  • Loading branch information
Shanks0465 committed Sep 2, 2024
1 parent c5fc303 commit c69edd3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/app/people/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ import {
VStack,
useBreakpointValue,
Flex,
ResponsiveValue,
} from "@chakra-ui/react";
import { useQuery } from "react-query";
import { API_URL } from "../config";
import { Property } from "csstype";

const fetchMembers = async () => {
try {
Expand Down Expand Up @@ -108,7 +110,7 @@ export default function People() {
p={5}
justifyContent={"center"}
gap={2}
direction={direction}
direction={direction as ResponsiveValue<Property.FlexDirection>}
mt={10}
>
<Button
Expand Down

0 comments on commit c69edd3

Please sign in to comment.