a tool for shared writing and social publishing
0

Configure Feed

Select the types of activity you want to include in your feed.

fix different email button

Jared Pereira (Apr 30, 2026, 9:01 PM EDT) 93bb0403 4ae00bd6

+6 -3
+6 -3
components/Subscribe/EmailSubscribe.tsx
··· 59 59 <h3>Confirm your email</h3> 60 60 Enter the code sent to <br /> 61 61 <div className="italic min-w-0 truncate">{props.emailValue}</div> 62 - <button className="text-sm text-accent-contrast mt-1"> 63 - Change Email 64 - </button> 65 62 <OneTimePasswordField.Root 66 63 autoSubmit 67 64 autoFocus={props.autoFocus} ··· 80 77 </div> 81 78 <OneTimePasswordField.HiddenInput /> 82 79 </OneTimePasswordField.Root> 80 + <button 81 + className="text-sm text-accent-contrast mt-1" 82 + onClick={() => props.onBack()} 83 + > 84 + Use a different email? 85 + </button> 83 86 </div> 84 87 ); 85 88 };