From 6c27a6cbd3d13272b9c19b2e7f5bfffda69460f3 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Wed, 11 Aug 2021 09:16:07 +1000 Subject: [PATCH] Fix default map state edit flags --- src/contexts/MapDataContext.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/contexts/MapDataContext.tsx b/src/contexts/MapDataContext.tsx index 9bdfac5..a29f903 100644 --- a/src/contexts/MapDataContext.tsx +++ b/src/contexts/MapDataContext.tsx @@ -57,8 +57,7 @@ const defaultMapState: Omit = { tokens: {}, drawings: {}, fogs: {}, - // Flags to determine what other people can edit - editFlags: ["drawing", "tokens", "notes", "fog"], + editFlags: ["drawing", "tokens", "notes"], notes: {}, };