fix(web): leptos-use broke stuff with use_cookie
This commit is contained in:
parent
174ef4198d
commit
349bcb1e4f
2 changed files with 8 additions and 3 deletions
|
@ -26,7 +26,8 @@ serde-inline-default = "0.2"
|
||||||
dashmap = "6.1"
|
dashmap = "6.1"
|
||||||
leptos = { version = "0.6", features = ["csr", "tracing"] }
|
leptos = { version = "0.6", features = ["csr", "tracing"] }
|
||||||
leptos_router = { version = "0.6", features = ["csr"] }
|
leptos_router = { version = "0.6", features = ["csr"] }
|
||||||
leptos-use = { version = "0.10", features = ["serde"] }
|
leptos-use = "0.13"
|
||||||
|
codee = { version = "0.2", features = ["serde_json"] }
|
||||||
reqwest = { version = "0.12", features = ["json"] }
|
reqwest = { version = "0.12", features = ["json"] }
|
||||||
apb = { path = "../apb", features = ["unstructured", "activitypub-fe", "activitypub-counters", "litepub", "did-core"] }
|
apb = { path = "../apb", features = ["unstructured", "activitypub-fe", "activitypub-counters", "litepub", "did-core"] }
|
||||||
uriproxy = { path = "../utils/uriproxy/" }
|
uriproxy = { path = "../utils/uriproxy/" }
|
||||||
|
|
|
@ -4,7 +4,11 @@ use leptos_router::*;
|
||||||
use crate::prelude::*;
|
use crate::prelude::*;
|
||||||
use crate::CONTACT;
|
use crate::CONTACT;
|
||||||
|
|
||||||
use leptos_use::{signal_debounced, storage::use_local_storage, use_cookie_with_options, use_element_size, use_window_scroll, UseCookieOptions, utils::{FromToStringCodec, JsonCodec}, UseElementSizeReturn};
|
use codee::string::{FromToStringCodec, JsonSerdeCodec};
|
||||||
|
use leptos_use::{
|
||||||
|
signal_debounced, storage::use_local_storage, use_cookie_with_options, use_element_size, use_window_scroll,
|
||||||
|
UseCookieOptions, UseElementSizeReturn
|
||||||
|
};
|
||||||
|
|
||||||
#[derive(Clone, Copy)]
|
#[derive(Clone, Copy)]
|
||||||
pub struct Feeds {
|
pub struct Feeds {
|
||||||
|
@ -59,7 +63,7 @@ pub fn App() -> impl IntoView {
|
||||||
// .secure(true)
|
// .secure(true)
|
||||||
.path("/")
|
.path("/")
|
||||||
);
|
);
|
||||||
let (config, set_config, _) = use_local_storage::<crate::Config, JsonCodec>("config");
|
let (config, set_config, _) = use_local_storage::<crate::Config, JsonSerdeCodec>("config");
|
||||||
|
|
||||||
let auth = Auth { token, userid };
|
let auth = Auth { token, userid };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue