Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
fix: remove useless import
Browse files Browse the repository at this point in the history
  • Loading branch information
FredericNumericite committed Jan 10, 2024
1 parent abdbc3b commit 77a3da8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion tumeplay-vitrine/components/header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Box, Heading, Link, Text } from "@chakra-ui/react";
import { Box, Heading } from "@chakra-ui/react";
import Image from "next/image";

const Header = () => {
Expand Down
3 changes: 0 additions & 3 deletions tumeplay-vitrine/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { useState, useEffect } from "react";
import axios from "axios";
import { Post, Theme } from "./api/posts/types";
import Head from "next/head";
import {
Box,
Expand All @@ -16,7 +14,6 @@ import Header from "../components/header";
import Link from "next/link";

const Home = () => {
const NEXT_PUBLIC_STRAPI_URL = process.env.NEXT_PUBLIC_STRAPI_URL as string;
const [country, setCountry] = useState<string>("");

const getCountryLocation = () => {
Expand Down

0 comments on commit 77a3da8

Please sign in to comment.