Skip to content

Commit

Permalink
fix server port
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderKolberg committed Dec 8, 2023
1 parent a4bb8f5 commit 4a27597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _examples/golang-sse/webapp/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Chat, Message, SubscribeMessagesReturn } from "./rpc";
import "./style.css";

//Create client
const api = new Chat("http://localhost:5173", fetch);
const api = new Chat("http://localhost:4848", fetch);

//Create signal for messages
const messages = signal<Message[]>([]);
Expand Down

0 comments on commit 4a27597

Please sign in to comment.