Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

Commit

Permalink
fix: Rewrite pathes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bayathy committed Dec 16, 2022
1 parent fa3b856 commit 053805b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/layout/view.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { FC, ReactNode, ReactElement, useState, useEffect } from "react";
import { Box, Flex } from "@chakra-ui/react";
import { useRouter } from "next/router";
import { ListInfo } from "libs/firebase/types";
import { getInfo } from "libs/firebase/store";
import { ViewHeader } from "./header/view";
import { ListInfo } from "../../libs/firebase/types";
import { getInfo } from "../../libs/firebase/store";

interface ViewLayoutInterface {
children: ReactNode;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/share/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { Box, Flex, useDisclosure } from "@chakra-ui/react";
import type { GetServerSideProps, NextPageWithLayout } from "next";
import type { ListInfo, StoreCardList } from "libs/firebase/types";
import { useEffect, useState } from "react";
import { getCardList, getInfo } from "libs/firebase/store";
import { ViewImageCard, ViewTextCard } from "components/card/view";
import { ViewModal } from "components/view-modal";
import { NextSeo } from "next-seo";
import { getCardList, getInfo } from "../../libs/firebase/store";
import { createGetLayout } from "../../components/layout/view";

type ViewPageProps = {
Expand Down

0 comments on commit 053805b

Please sign in to comment.