Skip to content

Commit be2c34b

Browse files
committed
var
1 parent 84e2a40 commit be2c34b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/src/internal/client/runtime.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ export function mutate(source, update) {
887887
* @template V
888888
*/
889889
export function mutate_store(store, get_value, update) {
890-
const value = untrack(get_value);
890+
var value = untrack(get_value);
891891
var updated = update(value);
892892
store.set(value);
893893
return updated;

0 commit comments

Comments
 (0)