1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-11 03:34:00 +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 {} export interface Props extends BaseLayoutProps {}
@@ -8,5 +8,6 @@ const props = Astro.props;
<BaseLayout {...props} noIndex={true}> <BaseLayout {...props} noIndex={true}>
<slot /> <slot />
<div slot='login-popup'></div>
<div slot='page-footer'></div> <div slot='page-footer'></div>
</BaseLayout> </BaseLayout>

View File

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