client/apps/web/src/routes/settings/chat.tsx
Alois 67b7926dab
All checks were successful
/ build-web (push) Successful in 1m10s
/ build-desktop (push) Successful in 11m22s
/ build-mobile (push) Successful in 15m52s
/ release (push) Successful in 23s
(feat): add message states, tweaks chat ui
(feat): add drag and drop to login page
2026-05-24 14:09:57 +02:00

30 lines
763 B
TypeScript

import { Switch } from "@/features/settings/components";
import { Kbd } from "@tensamin/ui";
export default function Page() {
return (
<div className="flex flex-col gap-2">
<Switch
label={
<p>
Change <Kbd>Enter</Kbd> behavior to <Kbd>Shift</Kbd> +{" "}
<Kbd>Enter</Kbd>
</p>
}
id="settings.reverse_enter_behavior"
/>
<Switch
label="Enable read confirmations"
id="settings.read_confirmations"
/>
<Switch
label="Enable receive confirmations"
id="settings.receive_confirmations"
/>
<Switch
label="Sidebar message preview"
id="settings.show_start_of_last_message_in_sidebar"
/>
</div>
);
}