1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-07-31 22:40:19 +02:00

fix: twice social callback call

This commit is contained in:
Arik Chakma
2023-07-10 21:18:37 +06:00
parent c4db994753
commit f52e6df410
2 changed files with 5 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
---
import BaseLayout,{ Props as BaseLayoutProps } from './BaseLayout.astro';
import BaseLayout, { Props as BaseLayoutProps } from './BaseLayout.astro';
export interface Props extends BaseLayoutProps {}
@@ -8,5 +8,6 @@ const props = Astro.props;
<BaseLayout {...props} noIndex={true}>
<slot />
<div slot='login-popup'></div>
<div slot='page-footer'></div>
</BaseLayout>

View File

@@ -150,7 +150,9 @@ const gaPageIdentifier = Astro.url.pathname
</slot>
<Authenticator />
<LoginPopup />
<slot name="login-popup">
<LoginPopup />
</slot>
<CommandMenu client:idle />
<PageProgress initialMessage={initialLoadingMessage} client:idle />
<PageSponsor