public
anord
read
Ledger
Why work hard when you can work easier?
Languages
Repository composition by tracked source files.
TypeScript
86%
CSS
10%
SQL
3%
Shell
1%
HTML
0%
Trace
apps/web/src/components/PreferencesPage.tsx
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
PreferencesPage.tsx
on main
Author
Date
Commit
Line
Code
Alex Nord
3 months ago
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 1
import { useEffect, useState } from "react";
import { useEffect, useState } from "react";
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 2
import type { ReactNode } from "react";
import type { ReactNode } from "react";
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 3
import { Link, useParams } from "react-router-dom";
import { Link, useParams } from "react-router-dom";
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 4
import type { SessionUser } from "@ledger/shared";
import type { SessionUser } from "@ledger/shared";
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 5
import { PageHeader } from "./PageHeader";
import { PageHeader } from "./PageHeader";
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 6
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 7
export type PreferencesState = {
export type PreferencesState = {
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 8
theme: "system" | "light" | "dark";
theme: "system" | "light" | "dark";
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 9
compactSidebar: boolean;
compactSidebar: boolean;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 10
emailNotifications: boolean;
emailNotifications: boolean;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 11
productUpdates: boolean;
productUpdates: boolean;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 12
smartText: boolean;
smartText: boolean;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 13
showLineNumbers: boolean;
showLineNumbers: boolean;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 14
};
};
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 15
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 16
const sections = [
const sections = [
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 17
["profile", "Profile"],
["profile", "Profile"],
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 18
["preferences", "Preferences"],
["preferences", "Preferences"],
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 19
["appearance", "Appearance"],
["appearance", "Appearance"],
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 20
["notifications", "Notifications"],
["notifications", "Notifications"],
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 21
["account", "Account"]
["account", "Account"]
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 22
] as const;
] as const;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 23
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 24
function SettingsRow({
function SettingsRow({
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 25
label,
label,
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 26
description,
description,
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 27
control
control
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 28
}: {
}: {
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 29
label: string;
label: string;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 30
description: string;
description: string;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 31
control: ReactNode;
control: ReactNode;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 32
}) {
}) {
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 33
return (
return (
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 34
<div className="settings-row">
<div className="settings-row">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 35
<div className="settings-row__content">
<div className="settings-row__content">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 36
<strong>{label}</strong>
<strong>{label}</strong>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 37
<p>{description}</p>
<p>{description}</p>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 38
</div>
</div>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 39
<div className="settings-row__control">{control}</div>
<div className="settings-row__control">{control}</div>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 40
</div>
</div>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 41
);
);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 42
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 43
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 44
function Toggle({
function Toggle({
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 45
checked,
checked,
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 46
onChange,
onChange,
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 47
disabled = false,
disabled = false,
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 48
label
label
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 49
}: {
}: {
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 50
checked: boolean;
checked: boolean;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 51
onChange: (next: boolean) => void;
onChange: (next: boolean) => void;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 52
disabled?: boolean;
disabled?: boolean;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 53
label: string;
label: string;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 54
}) {
}) {
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 55
return (
return (
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 56
<label className={`toggle-switch${disabled ? " is-disabled" : ""}`} aria-label={label}>
<label className={`toggle-switch${disabled ? " is-disabled" : ""}`} aria-label={label}>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 57
<input
<input
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 58
type="checkbox"
type="checkbox"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 59
checked={checked}
checked={checked}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 60
disabled={disabled}
disabled={disabled}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 61
onChange={(event) => onChange(event.target.checked)}
onChange={(event) => onChange(event.target.checked)}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 62
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 63
<span className="toggle-switch__track" />
<span className="toggle-switch__track" />
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 64
</label>
</label>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 65
);
);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 66
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 67
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 68
export function PreferencesPage({
export function PreferencesPage({
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 69
user,
user,
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 70
preferences,
preferences,
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 71
onUpdatePreferences,
onUpdatePreferences,
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 72
onLogout
onLogout
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 73
}: {
}: {
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 74
user: SessionUser;
user: SessionUser;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 75
preferences: PreferencesState;
preferences: PreferencesState;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 76
onUpdatePreferences: (patch: Partial<PreferencesState>) => void;
onUpdatePreferences: (patch: Partial<PreferencesState>) => void;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 77
onLogout: () => Promise<void>;
onLogout: () => Promise<void>;
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 78
}) {
}) {
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 79
const { section = "preferences" } = useParams();
const { section = "preferences" } = useParams();
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 80
const currentSection = sections.some(([key]) => key === section) ? section : "preferences";
const currentSection = sections.some(([key]) => key === section) ? section : "preferences";
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 81
const [displayName, setDisplayName] = useState(user.displayName);
const [displayName, setDisplayName] = useState(user.displayName);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 82
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 83
useEffect(() => {
useEffect(() => {
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 84
setDisplayName(user.displayName);
setDisplayName(user.displayName);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 85
}, [user.displayName]);
}, [user.displayName]);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 86
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 87
function renderSection() {
function renderSection() {
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 88
switch (currentSection) {
switch (currentSection) {
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 89
case "profile":
case "profile":
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 90
return (
return (
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 91
<section className="settings-section">
<section className="settings-section">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 92
<h2 className="settings-section__title">Profile</h2>
<h2 className="settings-section__title">Profile</h2>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 93
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 94
label="Display name"
label="Display name"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 95
description="Profile editing is not connected to the server yet, but you can preview a preferred display name here."
description="Profile editing is not connected to the server yet, but you can preview a preferred display name here."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 96
control={<input value={displayName} onChange={(event) => setDisplayName(event.target.value)} />}
control={<input value={displayName} onChange={(event) => setDisplayName(event.target.value)} />}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 97
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 98
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 99
label="Email"
label="Email"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 100
description="Your account email is controlled by Ledger authentication."
description="Your account email is controlled by Ledger authentication."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 101
control={<input value={user.email} disabled />}
control={<input value={user.email} disabled />}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 102
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 103
</section>
</section>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 104
);
);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 105
case "appearance":
case "appearance":
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 106
return (
return (
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 107
<section className="settings-section">
<section className="settings-section">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 108
<h2 className="settings-section__title">Appearance</h2>
<h2 className="settings-section__title">Appearance</h2>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 109
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 110
label="Theme"
label="Theme"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 111
description="Choose how Ledger should appear on this device."
description="Choose how Ledger should appear on this device."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 112
control={
control={
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 113
<select
<select
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 114
value={preferences.theme}
value={preferences.theme}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 115
onChange={(event) =>
onChange={(event) =>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 116
onUpdatePreferences({ theme: event.target.value as PreferencesState["theme"] })
onUpdatePreferences({ theme: event.target.value as PreferencesState["theme"] })
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 117
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 118
>
>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 119
<option value="system">System</option>
<option value="system">System</option>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 120
<option value="light">Light</option>
<option value="light">Light</option>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 121
<option value="dark">Dark</option>
<option value="dark">Dark</option>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 122
</select>
</select>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 123
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 124
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 125
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 126
label="Compact sidebar"
label="Compact sidebar"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 127
description="Reduce sidebar spacing for a denser documentation tree."
description="Reduce sidebar spacing for a denser documentation tree."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 128
control={
control={
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 129
<Toggle
<Toggle
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 130
label="Compact sidebar"
label="Compact sidebar"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 131
checked={preferences.compactSidebar}
checked={preferences.compactSidebar}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 132
onChange={(next) => onUpdatePreferences({ compactSidebar: next })}
onChange={(next) => onUpdatePreferences({ compactSidebar: next })}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 133
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 134
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 135
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 136
</section>
</section>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 137
);
);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 138
case "notifications":
case "notifications":
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 139
return (
return (
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 140
<section className="settings-section">
<section className="settings-section">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 141
<h2 className="settings-section__title">Notifications</h2>
<h2 className="settings-section__title">Notifications</h2>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 142
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 143
label="Email notifications"
label="Email notifications"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 144
description="Receive important workspace updates by email when that functionality is enabled."
description="Receive important workspace updates by email when that functionality is enabled."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 145
control={
control={
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 146
<Toggle
<Toggle
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 147
label="Email notifications"
label="Email notifications"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 148
checked={preferences.emailNotifications}
checked={preferences.emailNotifications}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 149
onChange={(next) => onUpdatePreferences({ emailNotifications: next })}
onChange={(next) => onUpdatePreferences({ emailNotifications: next })}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 150
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 151
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 152
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 153
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 154
label="Product updates"
label="Product updates"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 155
description="Show product update notices inside Ledger."
description="Show product update notices inside Ledger."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 156
control={
control={
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 157
<Toggle
<Toggle
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 158
label="Product updates"
label="Product updates"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 159
checked={preferences.productUpdates}
checked={preferences.productUpdates}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 160
onChange={(next) => onUpdatePreferences({ productUpdates: next })}
onChange={(next) => onUpdatePreferences({ productUpdates: next })}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 161
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 162
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 163
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 164
</section>
</section>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 165
);
);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 166
case "account":
case "account":
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 167
return (
return (
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 168
<section className="settings-section">
<section className="settings-section">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 169
<h2 className="settings-section__title">Account</h2>
<h2 className="settings-section__title">Account</h2>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 170
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 171
label="Current role"
label="Current role"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 172
description="Your effective role in this workspace."
description="Your effective role in this workspace."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 173
control={<div className="settings-row__value">{user.role}</div>}
control={<div className="settings-row__value">{user.role}</div>}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 174
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 175
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 176
label="Session"
label="Session"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 177
description="Sign out of the current Ledger session."
description="Sign out of the current Ledger session."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 178
control={
control={
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 179
<button type="button" className="button-secondary" onClick={() => void onLogout()}>
<button type="button" className="button-secondary" onClick={() => void onLogout()}>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 180
Sign out
Sign out
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 181
</button>
</button>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 182
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 183
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 184
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 185
label="Danger zone"
label="Danger zone"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 186
description="Advanced account actions are not available in this build yet."
description="Advanced account actions are not available in this build yet."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 187
control={<button type="button" className="button-secondary" disabled>Unavailable</button>}
control={<button type="button" className="button-secondary" disabled>Unavailable</button>}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 188
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 189
</section>
</section>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 190
);
);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 191
case "preferences":
case "preferences":
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 192
default:
default:
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 193
return (
return (
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 194
<>
<>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 195
<section className="settings-section">
<section className="settings-section">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 196
<h2 className="settings-section__title">Preferences</h2>
<h2 className="settings-section__title">Preferences</h2>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 197
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 198
label="Smart text replacements"
label="Smart text replacements"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 199
description="Auto-format quotes, dashes, and common markdown shortcuts while editing."
description="Auto-format quotes, dashes, and common markdown shortcuts while editing."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 200
control={
control={
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 201
<Toggle
<Toggle
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 202
label="Smart text replacements"
label="Smart text replacements"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 203
checked={preferences.smartText}
checked={preferences.smartText}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 204
onChange={(next) => onUpdatePreferences({ smartText: next })}
onChange={(next) => onUpdatePreferences({ smartText: next })}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 205
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 206
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 207
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 208
<SettingsRow
<SettingsRow
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 209
label="Show line numbers"
label="Show line numbers"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 210
description="Display line numbers next to code blocks where supported."
description="Display line numbers next to code blocks where supported."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 211
control={
control={
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 212
<Toggle
<Toggle
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 213
label="Show line numbers"
label="Show line numbers"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 214
checked={preferences.showLineNumbers}
checked={preferences.showLineNumbers}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 215
onChange={(next) => onUpdatePreferences({ showLineNumbers: next })}
onChange={(next) => onUpdatePreferences({ showLineNumbers: next })}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 216
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 217
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 218
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 219
</section>
</section>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 220
</>
</>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 221
);
);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 222
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 223
}
}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 224
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 225
return (
return (
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 226
<div className="preferences-shell">
<div className="preferences-shell">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 227
<aside className="preferences-sidebar">
<aside className="preferences-sidebar">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 228
<Link to="/spaces" className="preferences-backlink">Back to app</Link>
<Link to="/spaces" className="preferences-backlink">Back to app</Link>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 229
<div className="preferences-nav-group">
<div className="preferences-nav-group">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 230
<p className="preferences-nav-group__label">Account</p>
<p className="preferences-nav-group__label">Account</p>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 231
<nav className="preferences-nav">
<nav className="preferences-nav">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 232
{sections.map(([key, label]) => (
{sections.map(([key, label]) => (
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 233
<Link
<Link
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 234
key={key}
key={key}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 235
to={`/preferences/${key}`}
to={`/preferences/${key}`}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 236
className={`preferences-nav__item${currentSection === key ? " is-current" : ""}`}
className={`preferences-nav__item${currentSection === key ? " is-current" : ""}`}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 237
>
>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 238
{label}
{label}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 239
</Link>
</Link>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 240
))}
))}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 241
</nav>
</nav>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 242
</div>
</div>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 243
</aside>
</aside>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 244
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 245
<div className="preferences-content">
<div className="preferences-content">
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 246
<PageHeader
<PageHeader
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 247
eyebrow="Preferences"
eyebrow="Preferences"
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 248
title={sections.find(([key]) => key === currentSection)?.[1] ?? "Preferences"}
title={sections.find(([key]) => key === currentSection)?.[1] ?? "Preferences"}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 249
description="Manage settings that affect your personal Ledger experience on this device."
description="Manage settings that affect your personal Ledger experience on this device."
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 250
/>
/>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 251
{renderSection()}
{renderSection()}
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 252
</div>
</div>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 253
</div>
</div>
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 254
);
);
same change
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 255
}
}