diff --git a/config.js b/config.js
index 44b42927..c231ef42 100644
--- a/config.js
+++ b/config.js
@@ -45,6 +45,27 @@ const config = {
//
// E.g. the 'bike' entry will add a "bike" profile for which we send a request with the specified 'details' parameter. You can even change the profile itself when you specify
// bike: { profile: 'raw_bike', ... }
+
+ // You can 'collapse' or group certain profiles to reduce the number of profiles in the panel. Instead they're listed in the settings but still a profile icon is shown.
+ // Note: the name of the group must be the default option for this group.
+ // profile_group_mapping: {
+ // car: {
+ // options: [
+ // { profile: 'car' },
+ // { profile: 'car_avoid_motorway' },
+ // { profile: 'car_avoid_ferry' },
+ // { profile: 'car_avoid_toll' }
+ // ]
+ // },
+ // bike: {
+ // options: [
+ // { profile: 'bike' },
+ // { profile: 'mtb' },
+ // { profile: 'racingbike' },
+ // { profile: 'ecargobike' }
+ // ]
+ // }
+ // }
}
// this is needed for jest (with our current setup at least)
diff --git a/src/App.tsx b/src/App.tsx
index 1fdf6098..db30ba8d 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -192,7 +192,7 @@ function LargeScreenLayout({ query, route, map, error, mapOptions, encodedValues
drawAreas={drawAreas}
/>
)}
-