Skip to content

Commit 86403a4

Browse files
committed
test: more console.logs!
1 parent 65edb69 commit 86403a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/stores/use-config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ export const useConfig = create<ConfigState>((set, get) => ({
4242

4343
try {
4444
const response = await fetch('/api/config');
45-
console.log(response);
45+
console.log('config response', response);
4646
if (!response.ok) {
4747
throw new Error('Failed to load configuration');
4848
}
4949

5050
const config: Config = await response.json();
51-
console.log(config);
51+
console.log('parsed', config);
5252
set({ config, loading: false, error: null });
5353
} catch (error) {
5454
console.error('Error loading configuration:', error);

0 commit comments

Comments
 (0)