Skip to content

Commit

Permalink
feat: label content customization for <OAuth2SignOptions>
Browse files Browse the repository at this point in the history
Co-authored-by: paring <[email protected]>
  • Loading branch information
CrackThrough and paring-chan committed Dec 21, 2023
1 parent 8fd699d commit b30b6f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/molecules/auth/OAuth2SignOptions.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
import { createEventDispatcher } from 'svelte';
const dispatch = createEventDispatcher();
export let labelKey: string = 'SIGNIN_MORE_OPTIONS';
</script>

<div class="oauth2-container">
<div class="oauth2-header">
<div class="oauth2-line" />
<p>
<Translation key="SIGNUP_MORE_OPTIONS" />
<Translation key={labelKey} />
</p>
<div class="oauth2-line" />
</div>
Expand Down

0 comments on commit b30b6f9

Please sign in to comment.