Skip to content

Commit

Permalink
MAT-7111: fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcphillips committed Dec 27, 2024
1 parent e8054f4 commit 6ece355
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface MadieSpeedDialProps {
dataTestId?: any;
}

const MeasureActionCenter = (props: MadieSpeedDialProps) => {
const MadieSpeedDial = (props: MadieSpeedDialProps) => {
const { actions, dataTestId } = props;
const [open, setOpen] = useState(false);

Expand Down Expand Up @@ -64,7 +64,7 @@ const MeasureActionCenter = (props: MadieSpeedDialProps) => {
key={action.name}
icon={action.icon}
tooltipTitle={action.name}
data-testid={action.dataTestId}
data-testid={action?.dataTestId}
onClick={() => {
setOpen(false);
action.onClick();
Expand All @@ -83,4 +83,4 @@ const MeasureActionCenter = (props: MadieSpeedDialProps) => {
);
};

export default MeasureActionCenter;
export default MadieSpeedDial;

0 comments on commit 6ece355

Please sign in to comment.