Skip to content

Commit

Permalink
feat: default mapOption to display all
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-maury committed Mar 29, 2024
1 parent 4897723 commit e7f7c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/store/mapOptions/mapOptionsReducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ interface MapOptionsState {
}

const initialState: MapOptionsState = getItem<MapOptionsState>(LOCAL_STORAGE_NAME, {
displayAll: false,
displayAll: true,
displayGnosis: true,
displayRmm: true,
markerOpacity: 1,
markerOpacity: .8,
});

export const mapOptionsSlice = createSlice({
Expand Down

0 comments on commit e7f7c33

Please sign in to comment.