Skip to content

Commit 1409ecc

Browse files
committed
frontend: remove debug outputs
1 parent d7b6b4d commit 1409ecc

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

frontend/src/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ export function App() {
107107
const persisted = storageManager && typeof storageManager.persisted === "function"
108108
? await storageManager.persisted()
109109
: false;
110-
console.log(`Storage persisted: ${persisted}`);
111110
if (!persisted) {
112111
setModalConfig({...modalConfig, show: true });
113112
}

frontend/src/pages/__tests__/User.test.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,6 @@ describe('User Component', () => {
348348
const changePasswordButton = screen.getByText('change_password');
349349
fireEvent.click(changePasswordButton);
350350
const test = screen.getByTestId("modal");
351-
console.log("test", test);
352351

353352
const currentPasswordInput = screen.getByRole('textbox', { name: 'current_password' });
354353
const newPasswordInput = screen.getByRole('textbox', { name: 'new_password' });

0 commit comments

Comments
 (0)