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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dev": "vite",
"build": "vite build",
"build:dev": "vite build --mode development",
"lint": "eslint .",
"lint": "eslint --max-warnings=0 .",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
Expand Down
3 changes: 1 addition & 2 deletions src/pages/FlowComparisonPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ export default function FlowComparisonPage() {
<AsciiBox title="MONTHLY CASH FLOW">
<TrendMonitor
data={flowData.map((d) => d.inflow)}
labels={flowData.map((d) => d.month)}
height={160}
label="INFLOW"
color="var(--matrix-ink)"
/>
</AsciiBox>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/LifeAiPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function LifeAiPage() {
<span className="font-mono text-sm text-matrix-primary">{dateStr}</span>
<MatrixButton size="small" onClick={goToNextDay}>[&gt;]</MatrixButton>
</div>
<MatrixButton size="small" variant="ghost" onClick={goToToday}>
<MatrixButton size="small" onClick={goToToday}>
[TODAY]
</MatrixButton>
</div>
Expand Down
7 changes: 0 additions & 7 deletions src/test/components/VibeComponents.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,6 @@ afterEach(() => {
vi.restoreAllMocks();
});

/** Flush pending rAF callbacks */
function _flushRAF(time = 16000) {
const toRun = [...rafCallbacks];
rafCallbacks = [];
toRun.forEach((cb) => cb(time));
}

// ============================================
// BackendStatus
// ============================================
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"files": [],
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }],
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
Expand Down
Loading