Skip to content

Commit

Permalink
chore: release v0.3.22
Browse files Browse the repository at this point in the history
  • Loading branch information
0xzio committed May 29, 2024
1 parent 9404d0b commit 26c8154
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "desktop",
"version": "0.3.21",
"version": "0.3.22",
"private": true,
"scripts": {
"next-start": "cross-env BROWSER=none next dev -p 4040",
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "penx"
version = "0.3.21"
version = "0.3.22"
description = "Your personal database"
authors = ["0xZion"]
license = ""
Expand Down
2 changes: 1 addition & 1 deletion packages/storage/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ type User = {
export async function getAuthorizedUser() {
try {
const user = (await get(PENX_AUTHORIZED_USER)) as User
return user ? user : null
return user
} catch (error) {
console.log('error0', error)
return null as any as User
Expand Down

0 comments on commit 26c8154

Please sign in to comment.