feat: remove unfinished flag for private workspaces
This commit is contained in:
@@ -99,27 +99,20 @@ export const AdvancedOptions: FunctionComponent<Props> = observer(
|
|||||||
<div className="px-3 my-2">
|
<div className="px-3 my-2">
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
{appState.enableUnfinishedFeatures && (
|
<div className="flex justify-between items-center mb-1">
|
||||||
<div className="flex justify-between items-center mb-1">
|
<Checkbox
|
||||||
<Checkbox
|
name="private-workspace"
|
||||||
name="private-workspace"
|
label="Private workspace"
|
||||||
label="Private workspace"
|
checked={isPrivateWorkspace}
|
||||||
checked={isPrivateWorkspace}
|
disabled={disabled}
|
||||||
disabled={disabled}
|
onChange={handleIsPrivateWorkspaceChange}
|
||||||
onChange={handleIsPrivateWorkspaceChange}
|
/>
|
||||||
/>
|
<a href="https://standardnotes.com/help/80" target="_blank" rel="noopener noreferrer" title="Learn more">
|
||||||
<a
|
<Icon type="info" className="color-neutral" />
|
||||||
href="https://standardnotes.com/help/80"
|
</a>
|
||||||
target="_blank"
|
</div>
|
||||||
rel="noopener noreferrer"
|
|
||||||
title="Learn more"
|
|
||||||
>
|
|
||||||
<Icon type="info" className="color-neutral" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{appState.enableUnfinishedFeatures && isPrivateWorkspace && (
|
{isPrivateWorkspace && (
|
||||||
<>
|
<>
|
||||||
<DecoratedInput
|
<DecoratedInput
|
||||||
className={'mb-2'}
|
className={'mb-2'}
|
||||||
|
|||||||
Reference in New Issue
Block a user