@bbki.ng/site 2.0.3 → 2.0.4

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
+ ## 2.0.4
4
+
3
5
  ## 2.0.3
4
6
 
5
7
  ## 2.0.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/site",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "code behind bbki.ng",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -17,10 +17,6 @@ export const LoginMenuItem = () => {
17
17
 
18
18
  if (sess?.user != null) {
19
19
  return (
20
- <>
21
- <ContextMenuLabel inset>
22
- {sess?.user?.email ?? ""}
23
- </ContextMenuLabel>
24
20
  <ContextMenuItem
25
21
  inset
26
22
  onClick={() => {
@@ -40,9 +36,8 @@ export const LoginMenuItem = () => {
40
36
  crossOrigin="anonymous"
41
37
  />
42
38
  )}
43
- logout
39
+ {sess?.user?.email ?? ""}
44
40
  </ContextMenuItem>
45
- </>
46
41
  );
47
42
  }
48
43