toggleNofitication()}
className="relative mt-1 h-7 w-12 shrink-0 cursor-default rounded-full bg-neutral-200 outline-none data-[state=checked]:bg-blue-500 dark:bg-neutral-800"
>
@@ -118,7 +113,7 @@ function Screen() {
toggleEnhancedPrivacy()}
className="relative mt-1 h-7 w-12 shrink-0 cursor-default rounded-full bg-neutral-200 outline-none data-[state=checked]:bg-blue-500 dark:bg-neutral-800"
>
@@ -134,7 +129,7 @@ function Screen() {
toggleAutoUpdate()}
className="relative mt-1 h-7 w-12 shrink-0 cursor-default rounded-full bg-neutral-200 outline-none data-[state=checked]:bg-blue-500 dark:bg-neutral-800"
>
@@ -149,7 +144,7 @@ function Screen() {
toggleZap()}
className="relative mt-1 h-7 w-12 shrink-0 cursor-default rounded-full bg-neutral-200 outline-none data-[state=checked]:bg-blue-500 dark:bg-neutral-800"
>
@@ -181,3 +176,13 @@ function Screen() {
);
}
+
+function Pending() {
+ return (
+
+
+
+ );
+}
diff --git a/src-tauri/resources/system_columns.json b/src-tauri/resources/system_columns.json
index 28c1363e..ba4fd23b 100644
--- a/src-tauri/resources/system_columns.json
+++ b/src-tauri/resources/system_columns.json
@@ -1,9 +1,4 @@
[
{ "label": "newsfeed", "name": "Newsfeed", "content": "/newsfeed" },
- { "label": "open", "name": "Open", "content": "/open" },
- {
- "label": "store",
- "name": "Store",
- "content": "/store/official"
- }
+ { "label": "open", "name": "Open", "content": "/open" }
]
diff --git a/src-tauri/src/nostr/keys.rs b/src-tauri/src/nostr/keys.rs
index 10ccdc46..a7d40eed 100644
--- a/src-tauri/src/nostr/keys.rs
+++ b/src-tauri/src/nostr/keys.rs
@@ -91,7 +91,7 @@ pub fn get_encrypted_key(npub: &str, password: &str) -> Result
{
if let Ok(nsec) = keyring.get_password() {
let secret_key = SecretKey::from_bech32(nsec).expect("Get secret key failed");
- let new_key = EncryptedSecretKey::new(&secret_key, password, 16, KeySecurity::Medium);
+ let new_key = EncryptedSecretKey::new(&secret_key, password, 16, KeySecurity::Unknown);
if let Ok(key) = new_key {
Ok(key.to_bech32().unwrap())