Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
le0pard committed Dec 28, 2024
1 parent d0c8d18 commit 0ee9708
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import ReportHeaderComponent from '@components/ReportViewHeader.svelte'
import ReportViewComponent from '@components/ReportView.svelte'
let { webWorkerObject, githubIcon } = $props()
let { webWorkerObject, githubSvgIcon } = $props()
setContext('ww', {
getWebWorker: () => webWorkerObject
Expand All @@ -33,7 +33,7 @@
<div class="parser-report" class:parser-report-hidden={$splitState.visible === 'left'}>
<ReportHeaderComponent>
{#snippet githubIcon()}
{@render githubIcon()}
{@render githubSvgIcon()}
{/snippet}
</ReportHeaderComponent>
<ReportViewComponent />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Parser.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
{:then webWorkerObject}
{#if isPageRendered}
<AppComponent webWorkerObject={webWorkerObject}>
{#snippet githubIcon()}
{#snippet githubSvgIcon()}
{@render githubIcon()}
{/snippet}
</AppComponent>
Expand Down

0 comments on commit 0ee9708

Please sign in to comment.