Skip to content

Commit

Permalink
fix: hotfix error
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungJL committed May 6, 2024
1 parent 418fb4a commit ac38f35
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//전체
export const ALL_스터디인증 = "65263917e90698c18a3b1e99";
export const ALL_스터디인증 = "6479f39e907daf3e8a5cda6e";

//수원
export const SUWAN_수원시청 = "64395f1e8d1edf4e056e993d";
Expand Down
1 change: 0 additions & 1 deletion pageTemplates/study/StudyCover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ interface IStudyCover {
function StudyCover({ brand, imageUrl, isPrivateStudy }: IStudyCover) {
const brandName = brand === "행궁 81.2" ? "행궁" : isPrivateStudy ? "개인스터디" : brand;
const logo = STUDY_CAFE_LOGO[brandName];
console.log(brandName);

return (
<StudyCoverWrapper>
Expand Down
2 changes: 1 addition & 1 deletion pages/admin/system/studyStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function AdminStudyStatus() {
const { data: SUWAN } = useStudyVoteQuery(dayjsToStr(date), "수원");
const { data: YANG } = useStudyVoteQuery(dayjsToStr(date), "양천");

console.log(date, SUWAN);


const handleStatus = (type: StudyStatus) => {};

Expand Down
2 changes: 1 addition & 1 deletion pages/study/[id]/[date]/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useSession } from "next-auth/react";
import { useParams } from "next/navigation";
import { useSession } from "next-auth/react";
import { useEffect } from "react";
import { useRecoilState, useSetRecoilState } from "recoil";
import styled from "styled-components";
Expand Down

0 comments on commit ac38f35

Please sign in to comment.