chore: clean up migration comments and unused params

Remove obsolete Dart migration notes and route handling comments from splash-button.tsx and auth-machine.ts, and drop the unused `self` parameter from `chatWebSocketActor` callback signature.
This commit is contained in:
2026-06-16 12:01:42 +08:00
parent 29776272ad
commit cba52884a3
3 changed files with 2 additions and 17 deletions
+1 -1
View File
@@ -184,7 +184,7 @@ export const loadMoreHistoryActor = fromPromise<
* - cleanup 函数 → XState 在 parent state exit 时自动调用
*/
export const chatWebSocketActor = fromCallback<ChatEvent, { token: string }>(
({ sendBack, input, self }) => {
({ sendBack, input }) => {
console.log("[chat-machine] chatWebSocketActor ENTRY", {
hasToken: !!input.token,
tokenLength: input.token?.length ?? 0,