Skip to content

Commit 0ee9708

Browse files
committed
fix naming
1 parent d0c8d18 commit 0ee9708

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/App.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import ReportHeaderComponent from '@components/ReportViewHeader.svelte'
99
import ReportViewComponent from '@components/ReportView.svelte'
1010
11-
let { webWorkerObject, githubIcon } = $props()
11+
let { webWorkerObject, githubSvgIcon } = $props()
1212
1313
setContext('ww', {
1414
getWebWorker: () => webWorkerObject
@@ -33,7 +33,7 @@
3333
<div class="parser-report" class:parser-report-hidden={$splitState.visible === 'left'}>
3434
<ReportHeaderComponent>
3535
{#snippet githubIcon()}
36-
{@render githubIcon()}
36+
{@render githubSvgIcon()}
3737
{/snippet}
3838
</ReportHeaderComponent>
3939
<ReportViewComponent />

src/components/Parser.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
{:then webWorkerObject}
4343
{#if isPageRendered}
4444
<AppComponent webWorkerObject={webWorkerObject}>
45-
{#snippet githubIcon()}
45+
{#snippet githubSvgIcon()}
4646
{@render githubIcon()}
4747
{/snippet}
4848
</AppComponent>

0 commit comments

Comments
 (0)