Skip to content

Commit

Permalink
chore: dependency change
Browse files Browse the repository at this point in the history
  • Loading branch information
C17AN committed Mar 21, 2022
1 parent 2b042f9 commit 150b44e
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 40 deletions.
12 changes: 0 additions & 12 deletions data/restaurants/BHC-리뷰.json

This file was deleted.

12 changes: 0 additions & 12 deletions data/restaurants/깐부치킨-리뷰.json

This file was deleted.

12 changes: 0 additions & 12 deletions data/restaurants/네네치킨-리뷰.json

This file was deleted.

10 changes: 7 additions & 3 deletions data/restaurants/이공족발-리뷰.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"id": 1,
"title": "15,000원으로 족발 무한리필? - 홍대 이공족발 리뷰",
"location": "홍대",
"title": "홍대 이공족발 리뷰",
"description": "15,000원으로 족발을 무한으로?",
"visitedAt": "2022년 2월 20일",
"location": "서울특별시 마포구 서교동 어울마당로 70 2층",
"thumbnail": "https://d3i7lyqkyp9zxr.cloudfront.net/restaurant/%EC%9D%B4%EA%B3%B5%EC%A1%B1%EB%B0%9C-%EB%A6%AC%EB%B7%B0/0.JPG",
"imageList": [
"https://d3i7lyqkyp9zxr.cloudfront.net/restaurant/%EC%9D%B4%EA%B3%B5%EC%A1%B1%EB%B0%9C-%EB%A6%AC%EB%B7%B0/0.JPG",
"https://d3i7lyqkyp9zxr.cloudfront.net/restaurant/%EC%9D%B4%EA%B3%B5%EC%A1%B1%EB%B0%9C-%EB%A6%AC%EB%B7%B0/0.JPG",
"https://d3i7lyqkyp9zxr.cloudfront.net/restaurant/%EC%9D%B4%EA%B3%B5%EC%A1%B1%EB%B0%9C-%EB%A6%AC%EB%B7%B0/0.JPG",
"https://d3i7lyqkyp9zxr.cloudfront.net/restaurant/%EC%9D%B4%EA%B3%B5%EC%A1%B1%EB%B0%9C-%EB%A6%AC%EB%B7%B0/0.JPG"
]
],
"price": "약 15,000원",
"review": "다른 무한리필 식당에서 그래왔듯 퀄리티를 기대하지는 않았지만, 의외로 괜찮은 고기 퀄리티에 놀랐습니다!\n다만 사람이 붐빌 경우에는 꼬들살이 금방 동날 위험(?)이 있으니 조심하세요!"
}
3 changes: 2 additions & 1 deletion hooks/useIsMobile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { useLayoutEffect, useEffect, useState } from "react";

const useIsMobile = () => {
const [isMobile, setIsMobile] = useState<boolean | null>(
typeof window !== "undefined" && window.innerWidth < 768 ? true : false
// typeof window !== "undefined" && window.innerWidth < 768 ? true : false
null
);
const [screenWidth, setScreenWidth] = useState(0);

Expand Down
10 changes: 10 additions & 0 deletions public/thumbnails/terraform.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions type/Restaurant.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
export type Restaurant = {
id: number;
title: string;
description?: string;
visitedAt: string;
thumbnail: string;
location: string;
price: string;
imageList: string | string[];
review: string;
};

1 comment on commit 150b44e

@vercel
Copy link

@vercel vercel bot commented on 150b44e Mar 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.