Skip to content

Commit 5e31347

Browse files
committed
fix list end pos
1 parent 939d822 commit 5e31347

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/web/src/features/explorer/components/ExplorerSidebar.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { uiTokens } from "../../../shared/styles/tokens";
22

33
export const explorerStyles = {
4-
root: "w-60 shrink-0 h-full overflow-y-auto border-l border-white/10 bg-[#1e1e1e]/90 backdrop-blur-2xl backdrop-saturate-150 p-2",
4+
root: "w-60 shrink-0 h-full overflow-y-auto border-l border-white/10 bg-[#1e1e1e]/90 backdrop-blur-2xl backdrop-saturate-150 p-2 pb-16",
55
header: "px-2 pb-1 text-[0.65rem] uppercase tracking-wider text-white/40",
66
list: "space-y-1",
77
languageButton: (active: boolean) =>

apps/web/src/features/session/hooks/useSessionMetrics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const EMPTY_ENGINE_SUMMARY: EngineSummary = {
1010
typed_length: 0,
1111
correct: 0,
1212
incorrect: 0,
13-
keystrokes: 0, // Added missing property
13+
keystrokes: 0,
1414
accuracy: 0,
1515
completion: 0,
1616
feedback: [],

0 commit comments

Comments
 (0)