Skip to content

Commit 704364e

Browse files
committed
fix: resolve variable reference errors in Svelte components
1 parent 4eb49b2 commit 704364e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

desktop/src/lib/BackButton.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ onMount(() => {
3838
});
3939
</script>
4040

41-
{#if isVisible}
41+
{#if _isVisible}
4242
<button
4343
class="button is-light back-button {customClass}"
4444
on:click={goBack}

desktop/src/lib/Chat/Chat.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,8 +1059,8 @@ function _toggleSessionList() {
10591059
{/if}
10601060
</div>
10611061

1062-
{#if providerHint}
1063-
<p class="is-size-7 has-text-grey">{providerHint}</p>
1062+
{#if _providerHint}
1063+
<p class="is-size-7 has-text-grey">{_providerHint}</p>
10641064
{/if}
10651065
{#if error}
10661066
<p class="has-text-danger is-size-7">{error}</p>

0 commit comments

Comments
 (0)