Skip to content

Commit 17a8d76

Browse files
committed
hotfix: didn't check cursor code, fix very critical data integrety issue
1 parent ab602e0 commit 17a8d76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clientMods.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ const loadParentFrameModsIfRequested = async (): Promise<Set<string>> => {
386386
for (const rawMod of modsFromParent) {
387387
try {
388388
const normalizedMod = normalizeParentMod(rawMod)
389-
await saveClientModData(normalizedMod)
389+
// Don't save parent frame mods - only activate for current session
390390
const activated = await activateMod(normalizedMod, 'parent-frame')
391391
if (activated) {
392392
activatedModNames.add(normalizedMod.name)

0 commit comments

Comments
 (0)