Skip to content

Commit

Permalink
Revert "."
Browse files Browse the repository at this point in the history
This reverts commit 78adb52.
  • Loading branch information
SachiGoto committed Nov 25, 2023
1 parent 78adb52 commit 00ac7a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions app/activity/details/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ import {
FormLabel
} from '@chakra-ui/react'
import { FiChevronLeft, FiClock, FiMapPin, FiLink2 } from 'react-icons/fi'
import { customColors } from '@/theme/color'
import { Carousel } from '@/components/carousel'
import { Link } from '@/components/link'
import { Header, Footer } from '@/components/navigation'
import { TrashIcon, EditIcon } from '@/icons'

import { customColors } from '@/theme/color'

export default function ActivityDetails() {
const bg = useColorModeValue('white', 'gray.800')
Expand Down
2 changes: 2 additions & 0 deletions app/components/carousel/carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
Box,
IconButton,
useBreakpointValue,
useColorModeValue
} from '@chakra-ui/react'
import { BiLeftArrowAlt, BiRightArrowAlt } from 'react-icons/bi'

Expand All @@ -23,6 +24,7 @@ const settings = {
}

export const Carousel = () => {
const color = useColorModeValue('white', 'gray.300')
const [slider, setSlider] = React.useState<Slider | null>(null)

const top = useBreakpointValue({ base: '90%', md: '50%' })
Expand Down

0 comments on commit 00ac7a7

Please sign in to comment.