Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

세줄요약 임시 삭제 #242

Merged
merged 1 commit into from
Dec 3, 2023
Merged
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
9 changes: 4 additions & 5 deletions src/components/Space/SpaceForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const SpaceForm = ({ spaceType, space }: SpaceFormProps) => {
category: space?.category || '',
isVisible: space?.isVisible || false,
isComment: space?.isComment || false,
isLinkSummarizable: space?.isLinkSummarizable || false,
isLinkSummarizable: false,
isReadMarkEnabled: space?.isReadMarkEnabled || false,
},
})
Expand Down Expand Up @@ -206,10 +206,9 @@ const SpaceForm = ({ spaceType, space }: SpaceFormProps) => {
onChange={() => setValue('isComment', !getValues('isComment'))}
/>
</div>
<div className="flex items-center justify-between border-t border-slate3 p-3">
{/* <div className="flex items-center justify-between border-t border-slate3 p-3">
<div className="text-sm font-medium text-gray9 opacity-50">
{/* 링크 3줄 요약 여부 */}
<span>서비스 준비 중입니다.</span>
링크 3줄 요약 여부
</div>
<Toggle
{...register('isLinkSummarizable')}
Expand All @@ -218,7 +217,7 @@ const SpaceForm = ({ spaceType, space }: SpaceFormProps) => {
isDisabled={true}
onChange={() => {}}
/>
</div>
</div> */}
<div className="flex items-center justify-between border-b border-t border-slate3 p-3">
<div className="text-sm font-medium text-gray9">읽음 처리 여부</div>
<Toggle
Expand Down