Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liambai committed Nov 2, 2024
1 parent 6d3cfe0 commit 7b01bc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viz/src/SAEVisualizer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function FeatureList({ config, feature, setFeature }: FeatureListProps) {
};

const groupedFeatures = config.curated?.reduce((acc, feature) => {
const group = feature.group;
const group = feature.group || "not classified";
if (!acc[group]) acc[group] = [];
acc[group].push(feature);
return acc;
Expand Down

0 comments on commit 7b01bc6

Please sign in to comment.