@@ -653,31 +653,31 @@ export interface Clerk {
653653 buildUrlWithAuth ( to : string ) : string ;
654654
655655 /**
656- * Returns the configured url where <SignIn/> is mounted or a custom sign-in page is rendered.
656+ * Returns the configured url where ` <SignIn/>` is mounted or a custom sign-in page is rendered.
657657 *
658658 * @param opts A {@link RedirectOptions} object
659659 */
660660 buildSignInUrl ( opts ?: RedirectOptions ) : string ;
661661
662662 /**
663- * Returns the configured url where <SignUp/> is mounted or a custom sign-up page is rendered.
663+ * Returns the configured url where ` <SignUp/>` is mounted or a custom sign-up page is rendered.
664664 *
665665 * @param opts A {@link RedirectOptions} object
666666 */
667667 buildSignUpUrl ( opts ?: RedirectOptions ) : string ;
668668
669669 /**
670- * Returns the url where <UserProfile /> is mounted or a custom user-profile page is rendered.
670+ * Returns the url where ` <UserProfile />` is mounted or a custom user-profile page is rendered.
671671 */
672672 buildUserProfileUrl ( ) : string ;
673673
674674 /**
675- * Returns the configured url where <CreateOrganization /> is mounted or a custom create-organization page is rendered.
675+ * Returns the configured url where ` <CreateOrganization />` is mounted or a custom create-organization page is rendered.
676676 */
677677 buildCreateOrganizationUrl ( ) : string ;
678678
679679 /**
680- * Returns the configured url where <OrganizationProfile /> is mounted or a custom organization-profile page is rendered.
680+ * Returns the configured url where ` <OrganizationProfile />` is mounted or a custom organization-profile page is rendered.
681681 */
682682 buildOrganizationProfileUrl ( ) : string ;
683683
@@ -707,7 +707,7 @@ export interface Clerk {
707707 buildAfterMultiSessionSingleSignOutUrl ( ) : string ;
708708
709709 /**
710- * Returns the configured url where <Waitlist/> is mounted or a custom waitlist page is rendered.
710+ * Returns the configured url where ` <Waitlist/>` is mounted or a custom waitlist page is rendered.
711711 */
712712 buildWaitlistUrl ( opts ?: { initialValues ?: Record < string , string > } ) : string ;
713713
@@ -720,31 +720,31 @@ export interface Clerk {
720720 redirectWithAuth ( to : string ) : Promise < unknown > ;
721721
722722 /**
723- * Redirects to the configured URL where <SignIn/> is mounted.
723+ * Redirects to the configured URL where ` <SignIn/>` is mounted.
724724 *
725725 * @param opts A {@link RedirectOptions} object
726726 */
727727 redirectToSignIn ( opts ?: SignInRedirectOptions ) : Promise < unknown > ;
728728
729729 /**
730- * Redirects to the configured URL where <SignUp/> is mounted.
730+ * Redirects to the configured URL where ` <SignUp/>` is mounted.
731731 *
732732 * @param opts A {@link RedirectOptions} object
733733 */
734734 redirectToSignUp ( opts ?: SignUpRedirectOptions ) : Promise < unknown > ;
735735
736736 /**
737- * Redirects to the configured URL where <UserProfile/> is mounted.
737+ * Redirects to the configured URL where ` <UserProfile/>` is mounted.
738738 */
739739 redirectToUserProfile : ( ) => Promise < unknown > ;
740740
741741 /**
742- * Redirects to the configured URL where <OrganizationProfile /> is mounted.
742+ * Redirects to the configured URL where ` <OrganizationProfile />` is mounted.
743743 */
744744 redirectToOrganizationProfile : ( ) => Promise < unknown > ;
745745
746746 /**
747- * Redirects to the configured URL where <CreateOrganization /> is mounted.
747+ * Redirects to the configured URL where ` <CreateOrganization />` is mounted.
748748 */
749749 redirectToCreateOrganization : ( ) => Promise < unknown > ;
750750
@@ -764,7 +764,7 @@ export interface Clerk {
764764 redirectToAfterSignOut : ( ) => void ;
765765
766766 /**
767- * Redirects to the configured URL where <Waitlist/> is mounted.
767+ * Redirects to the configured URL where ` <Waitlist/>` is mounted.
768768 */
769769 redirectToWaitlist : ( ) => void ;
770770
0 commit comments