From c5a659811b08a52bf9333cccab27cacb6c0193ef Mon Sep 17 00:00:00 2001 From: Lee Yi Date: Tue, 24 Jun 2025 15:56:26 +0800 Subject: [PATCH] Fix #3141 --- src/commons/sagas/PlaygroundSaga.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commons/sagas/PlaygroundSaga.ts b/src/commons/sagas/PlaygroundSaga.ts index 71b23c75ca..bb50f2cfdc 100644 --- a/src/commons/sagas/PlaygroundSaga.ts +++ b/src/commons/sagas/PlaygroundSaga.ts @@ -22,7 +22,7 @@ import WorkspaceActions from '../workspace/WorkspaceActions'; import { selectWorkspace } from './SafeEffects'; const PlaygroundSaga = combineSagaHandlers({ - [PlaygroundActions.changeQueryString.type]: updateQueryString, + [PlaygroundActions.generateLzString.type]: updateQueryString, [PlaygroundActions.shortenURL.type]: function* ({ payload: keyword }) { const queryString = yield select((state: OverallState) => state.playground.queryString); const errorMsg = 'ERROR';