浏览代码

fix path of set_server_url (#2314)

Co-authored-by: =Chung Wong <=wch705@gmail.com>
Chung 1 年之前
父节点
当前提交
c9ab09b348
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/fullstack/examples/axum-desktop/src/client.rs

+ 1 - 1
packages/fullstack/examples/axum-desktop/src/client.rs

@@ -8,7 +8,7 @@ use axum_desktop::*;
 fn main() {
     // Set the url of the server where server functions are hosted.
     #[cfg(not(feature = "server"))]
-    dioxus::fullstack::prelude::server_fn::set_server_url("http://127.0.0.1:8080");
+    dioxus::fullstack::prelude::server_fn::client::set_server_url("http://127.0.0.1:8080");
 
     #[cfg(feature = "desktop")]
     dioxus::prelude::launch_desktop(app)