Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/wineDetail/FlavorSliderList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ function FlavorSliderList({
labelRight={'진해요'}
badgeLabel={'바디감'}
disabled
max={10}
/>
<FlavorSlider
value={smoothTannic}
Expand All @@ -30,6 +31,7 @@ function FlavorSliderList({
labelRight={'떫어요'}
badgeLabel={'타닌'}
disabled
max={10}
/>
<FlavorSlider
value={drySweet}
Expand All @@ -38,6 +40,7 @@ function FlavorSliderList({
labelRight={'달아요'}
badgeLabel={'당도'}
disabled
max={10}
/>
<FlavorSlider
value={softAcidic}
Expand All @@ -46,6 +49,7 @@ function FlavorSliderList({
labelRight={'많이셔요'}
badgeLabel={'산미'}
disabled
max={10}
/>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/wineDetail/WineRating.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface Props {
function WineRating({ rating, reviewCount, ratings }: Props) {
const nowWine = useWineStore((state) => state.nowWine);

if (!nowWine) return <>에러</>;
if (!nowWine) return;
const { id, name } = nowWine;

return (
Expand Down