+ {Object.entries(groupedInterests).map(([category, items]) => (
+
+
{capitalize(category.replace(/_/g, ' '))}
+
+ {items.map((item) => (
+
+ handleClick(item.value)}
+ isActive={profile.interests.includes(item.value)}
+ >
+ {item.label}
+ {' '}
+
+ ))}
+
+
+ ))}
+
+ );
+}
+
+export function UseProfileInterests() {
+ return (
+