@bbki.ng/site 2.0.8 → 2.0.9

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.9
4
+
3
5
  ## 2.0.8
4
6
 
5
7
  ## 2.0.7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/site",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "code behind bbki.ng",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -19,7 +19,6 @@ export const LoginMenuItem = () => {
19
19
  if (sess?.user != null) {
20
20
  return (
21
21
  <ContextMenuItem
22
- inset
23
22
  onClick={() => {
24
23
  confirm("确定退出登录吗?", () => {
25
24
  supabase.auth.signOut().then(() => {
@@ -35,7 +34,7 @@ export const LoginMenuItem = () => {
35
34
  src={sess?.user?.user_metadata.avatar_url}
36
35
  alt="avatar"
37
36
  style={{ width: 16, height: 16 }}
38
- className="rounded-full mr-8"
37
+ className="mr-8"
39
38
  crossOrigin="anonymous"
40
39
  />
41
40
  )}