diff options
| author | David Hill <[email protected]> | 2025-10-02 15:37:13 +0100 |
|---|---|---|
| committer | David Hill <[email protected]> | 2025-10-02 15:37:13 +0100 |
| commit | b35c6b9fffbe3d32252ee5e4845c927b18d6225a (patch) | |
| tree | ed15f5564626c419fc6f8ef1d66bb843933c069f | |
| parent | 30ec02e82d357754b2f2ee3cbda8c1e3db258483 (diff) | |
| parent | bc9522d5d8621faff3f9d3de3ebc617a37d0752c (diff) | |
| download | opencode-b35c6b9fffbe3d32252ee5e4845c927b18d6225a.tar.gz opencode-b35c6b9fffbe3d32252ee5e4845c927b18d6225a.zip | |
Merge branch 'dev' of https://github.com/sst/opencode into dev
| -rw-r--r-- | packages/console/app/src/component/email-signup.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/console/app/src/component/email-signup.tsx b/packages/console/app/src/component/email-signup.tsx index fec516a5f..8b088ada8 100644 --- a/packages/console/app/src/component/email-signup.tsx +++ b/packages/console/app/src/component/email-signup.tsx @@ -1,6 +1,6 @@ import { action, useSubmission } from "@solidjs/router" import dock from "../asset/lander/dock.png" -import { Resource } from "sst" +import { Resource } from "@opencode/console-resource" import { Show } from "solid-js" const emailSignup = action(async (formData: FormData) => { @@ -39,7 +39,9 @@ export function EmailSignup() { </button> </form> <Show when={submission.result}> - <div style="color: #03B000; margin-top: 24px;">Almost done, check your inbox and confirm your email address</div> + <div style="color: #03B000; margin-top: 24px;"> + Almost done, check your inbox and confirm your email address + </div> </Show> <Show when={submission.error}> <div style="color: #FF408F; margin-top: 24px;">{submission.error}</div> |
