Skip to content

Commit

Permalink
fix(ui): update colors hook (#2347)
Browse files Browse the repository at this point in the history
Signed-off-by: Remington Breeze <[email protected]>
  • Loading branch information
rbreeze authored Jul 25, 2024
1 parent 94204c6 commit fc64b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/features/project/pipelines/images.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const Images = ({
stages: Stage[];
hide: () => void;
}) => {
const colors = useContext(ColorContext);
const { stageColorMap: colors } = useContext(ColorContext);
const images = useMemo(() => {
const images = new Map<string, Map<string, StageStyleMap>>();
stages.forEach((stage) => {
Expand Down

0 comments on commit fc64b2f

Please sign in to comment.