Skip to content

Commit 726bbde

Browse files
committed
Add privacyPolicyUrl and termsOfServiceUrl on ConnectEmbed in login page (#4890)
## Problem solved Short description of the bug fixed or feature added <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on enhancing the `login` component by adding links for the privacy policy and terms of service. ### Detailed summary - Added `privacyPolicyUrl` prop with the value `"/privacy"` to the component. - Added `termsOfServiceUrl` prop with the value `"/tos"` to the component. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 025c581 commit 726bbde

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/dashboard/src/app/login/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ function CustomConnectEmmbed() {
7878
modalSize={isLG ? "wide" : "compact"}
7979
theme={getSDKTheme(theme === "light" ? "light" : "dark")}
8080
className="shadow-lg"
81+
privacyPolicyUrl="/privacy"
82+
termsOfServiceUrl="/tos"
8183
/>
8284
);
8385
}

0 commit comments

Comments
 (0)