diff --git a/packages/app/src/components/workspace-setting/PublishPage.tsx b/packages/app/src/components/workspace-setting/PublishPage.tsx
index d8692acbb4..4ff35d776d 100644
--- a/packages/app/src/components/workspace-setting/PublishPage.tsx
+++ b/packages/app/src/components/workspace-setting/PublishPage.tsx
@@ -4,6 +4,7 @@ import {
StyledPublishCopyContainer,
StyledPublishExplanation,
StyledSettingH2,
+ StyledStopPublishContainer,
} from './style';
import { useState } from 'react';
import { Button } from '@/ui/button';
@@ -42,7 +43,9 @@ export const PublishPage = ({ workspace }: { workspace: WorkspaceUnit }) => {
{t('Publishing')}
- {t('Share with link')}
+
+ {t('Share with link')}
+
@@ -54,24 +57,27 @@ export const PublishPage = ({ workspace }: { workspace: WorkspaceUnit }) => {
>
) : (
- {'Publishing Description'}
+ {t('Publishing Description')}
)}
-
- {workspace.published ? (
+
+ {workspace.published ? (
+
- ) : (
+
+ ) : (
+
- )}
-
+
+ )}
) : (