Skip to content

Commit

Permalink
type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
narthur committed Nov 20, 2024
1 parent 1ef2cff commit 6fe39c5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/account.astro
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ import GeneralSettings from '../components/GeneralSettings.svelte';

<script>
const tabs = document.querySelectorAll('.tab');
const contents = document.querySelectorAll('.tab-content');
const contents = document.querySelectorAll(
'.tab-content'
) as NodeListOf<HTMLElement>;

tabs.forEach((tab) => {
tab.addEventListener('click', () => {
Expand Down

0 comments on commit 6fe39c5

Please sign in to comment.