From bfe29fa6063f042efae11dd5713d7482fd7ea056 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Wed, 11 Sep 2024 15:02:57 +0200 Subject: [PATCH] spot: fix signup link --- spot/entrypoints/popup/Login.tsx | 2 +- spot/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spot/entrypoints/popup/Login.tsx b/spot/entrypoints/popup/Login.tsx index 541894e99..846ae6fc8 100644 --- a/spot/entrypoints/popup/Login.tsx +++ b/spot/entrypoints/popup/Login.tsx @@ -29,7 +29,7 @@ function getLink(url: string) { } function openSignupPage(instanceUrl: string) { - const signupUrl = `${getLink(instanceUrl)}/singup?spotCallback=true`; + const signupUrl = `${getLink(instanceUrl)}/signup?spotCallback=true`; chrome.tabs.create({ url: signupUrl, diff --git a/spot/package.json b/spot/package.json index fb584e659..f5d2df044 100644 --- a/spot/package.json +++ b/spot/package.json @@ -2,7 +2,7 @@ "name": "wxt-starter", "description": "manifest.json description", "private": true, - "version": "1.0.3", + "version": "1.0.4", "type": "module", "scripts": { "dev": "wxt",