diff --git a/frontend/src/components/ConnectButton.tsx b/frontend/src/components/ConnectButton.tsx new file mode 100644 index 00000000..fc5537da --- /dev/null +++ b/frontend/src/components/ConnectButton.tsx @@ -0,0 +1,25 @@ +import Loading from "src/components/Loading"; + +type ConnectButtonProps = { + isConnecting: boolean; +}; + +export default function ConnectButton({ isConnecting }: ConnectButtonProps) { + return ( + + ); +} diff --git a/frontend/src/screens/Setup.tsx b/frontend/src/screens/Setup.tsx index 1807a0f0..243ad4cd 100644 --- a/frontend/src/screens/Setup.tsx +++ b/frontend/src/screens/Setup.tsx @@ -32,7 +32,7 @@ export function Setup() { }), }); - navigate("/apps"); + navigate("/"); } catch (error) { handleRequestError("Failed to connect", error); } finally {