Skip to content

Commit 2af15f4

Browse files
committed
Fix: corrected import paths
1 parent 1c5a0a2 commit 2af15f4

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.changeset/honest-goats-cry.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@t1mmen/srtd": patch
3+
---
4+
5+
Fix incorrect import paths

src/commands/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// src/commands/_app.tsx
22
import { Alert, ThemeProvider } from '@inkjs/ui';
3-
import Debug from 'components/Debug.js';
43
import { Box, Static, Text } from 'ink';
54
import type { AppProps } from 'pastel';
65
import React from 'react';
6+
import Debug from '../components/Debug.js';
77
import { COLOR_ERROR, customTheme } from '../components/customTheme.js';
88
import { useDatabaseConnection } from '../hooks/useDatabaseConnection.js';
99

src/commands/clear.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import { Select, Spinner } from '@inkjs/ui';
2-
import Branding from 'components/Branding.js';
3-
import Quittable from 'components/Quittable.js';
4-
// commands/build.tsx
52
import { Box, useApp } from 'ink';
63
import React from 'react';
4+
import Branding from '../components/Branding.js';
5+
import Quittable from '../components/Quittable.js';
76
import { clearBuildLogs, resetConfig } from '../utils/config.js';
87

98
const clearOptions = [

0 commit comments

Comments
 (0)