fix: correct inverted arrow icon in advanced section toggle

This commit is contained in:
2026-04-09 02:40:01 +05:30
parent f4ebc4e99e
commit 1a46c7fbd2
+2 -2
View File
@@ -172,9 +172,9 @@
</strong>
<Button onclick={() => (showAdvanced = !showAdvanced)}>
{#if showAdvanced}
<Icon icon={AltArrowDown} />
{:else}
<Icon icon={AltArrowUp} />
{:else}
<Icon icon={AltArrowDown} />
{/if}
</Button>
</div>