Skip to content

Commit

Permalink
fix icon alignment (#5147)
Browse files Browse the repository at this point in the history
  • Loading branch information
CamronStaley authored Nov 19, 2024
1 parent 96c2e18 commit 5a40599
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function ActionsMenu(props: ActionsPropsType) {

if (actions.length <= maxInline) {
return (
<Stack direction="row" spacing={0.5} justifyContent="flex-start">
<Stack direction="row" spacing={0.5} justifyContent="flex-end">
{actions.map((action) => (
<Action {...action} key={action.name} mode="inline" size={size} />
))}
Expand Down

0 comments on commit 5a40599

Please sign in to comment.