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
1 change: 0 additions & 1 deletion apps/web/src/components/settings/SettingsRouteContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ export function SettingsRouteContextProvider({ children }: { children: ReactNode
: []),
...(settings.timestampFormat !== defaults.timestampFormat ? ["Time format"] : []),
...(settings.locale !== defaults.locale ? ["Language"] : []),
...(settings.showStitchBorder !== defaults.showStitchBorder ? ["Stitch border"] : []),
...(settings.enableAssistantStreaming !== defaults.enableAssistantStreaming
? ["Assistant output"]
: []),
Expand Down
28 changes: 0 additions & 28 deletions apps/web/src/routes/_chat.settings.index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -866,34 +866,6 @@ function SettingsRouteView() {
}
/>

<SettingsRow
title="Stitch border"
description="Show the decorative stitch border around the viewport."
resetAction={
settings.showStitchBorder !== defaults.showStitchBorder ? (
<SettingResetButton
label="stitch border"
onClick={() =>
updateSettings({
showStitchBorder: defaults.showStitchBorder,
})
}
/>
) : null
}
control={
<Switch
checked={settings.showStitchBorder}
onCheckedChange={(checked) =>
updateSettings({
showStitchBorder: Boolean(checked),
})
}
aria-label="Show stitch border"
/>
}
/>

<SettingsRow
title="Assistant output"
description="Show token-by-token output while a response is in progress."
Expand Down
28 changes: 0 additions & 28 deletions apps/web/src/routes/_chat.settings.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -352,34 +352,6 @@ function SettingsStyleRouteView() {
/>
}
/>

<SettingsRow
title="Stitch border"
description="Show the decorative stitch border around the viewport."
resetAction={
settings.showStitchBorder !== defaults.showStitchBorder ? (
<SettingResetButton
label="stitch border"
onClick={() =>
updateSettings({
showStitchBorder: defaults.showStitchBorder,
})
}
/>
) : null
}
control={
<Switch
checked={settings.showStitchBorder}
onCheckedChange={(checked) =>
updateSettings({
showStitchBorder: Boolean(checked),
})
}
aria-label="Show stitch border"
/>
}
/>
</SettingsSection>

<SettingsSection
Expand Down
Loading