@bbki.ng/site 1.4.1 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @bbki.ng/site
2
2
 
3
+ ## 1.4.2
4
+
3
5
  ## 1.4.1
4
6
 
5
7
  ## 1.4.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/site",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "code behind bbki.ng",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -36,11 +36,11 @@ export const Login = () => {
36
36
  onClick={async () => {
37
37
  setIsLoading(true);
38
38
  return supabase.auth.signIn({
39
- provider: OauthProvider.Twitter,
39
+ provider: OauthProvider.Spotify,
40
40
  });
41
41
  }}
42
42
  >
43
- Twitter
43
+ Spotify
44
44
  </Button>
45
45
  </>
46
46
  </ArticlePage>
@@ -7,4 +7,5 @@ export interface BBKingSession extends Session {
7
7
  export enum OauthProvider {
8
8
  GITHUB = "github",
9
9
  Twitter = "twitter",
10
+ Spotify = "spotify",
10
11
  }