storkit: merge 449_bug_oauth_callback_url_ignores_port_cli_flag
This commit is contained in:
@@ -66,7 +66,11 @@ export function SelectionScreen({
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => {
|
||||
window.open("/oauth/authorize", "_blank", "noopener,noreferrer");
|
||||
window.open(
|
||||
"/oauth/authorize",
|
||||
"_blank",
|
||||
"noopener,noreferrer",
|
||||
);
|
||||
}}
|
||||
style={{
|
||||
padding: "8px 16px",
|
||||
@@ -78,7 +82,9 @@ export function SelectionScreen({
|
||||
fontSize: "0.9em",
|
||||
}}
|
||||
>
|
||||
{oauthStatus.expired ? "Re-authenticate with Claude" : "Login with Claude"}
|
||||
{oauthStatus.expired
|
||||
? "Re-authenticate with Claude"
|
||||
: "Login with Claude"}
|
||||
</button>
|
||||
) : (
|
||||
<span
|
||||
|
||||
Reference in New Issue
Block a user