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:
@@ -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>
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user