Skip to content

Commit

Permalink
fix: after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
punchanabu committed Dec 22, 2024
1 parent 57f5c5d commit 24f4df3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/auth/login/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import { goto } from '$app/navigation';
import { goto } from '$app/navigation';
import { login } from '$lib/api/login';
import CryptoJS from 'crypto-js';
Expand All @@ -20,7 +20,7 @@
} catch (error) {
errorMessage = error instanceof Error ? error.message : 'An unknown error occurred';
}
// getDecryptedToken();
getDecryptedToken();
};
const getDecryptedToken = () => {
Expand Down

0 comments on commit 24f4df3

Please sign in to comment.