Skip to content

Commit 045401d

Browse files
committed
clean up snapshots
1 parent 1dc5370 commit 045401d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

site/src/components/WorkspaceActions/WorkspaceActions.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const WorkspaceActions: FC<WorkspaceActionsProps> = ({
7777
}
7878

7979
return (
80-
<div className={styles.buttonContainer}>
80+
<span className={styles.buttonContainer}>
8181
{/* primary workspace CTA */}
8282
<span data-testid="primary-cta">{buttonMapping[actions.primary]}</span>
8383

@@ -120,14 +120,15 @@ export const WorkspaceActions: FC<WorkspaceActionsProps> = ({
120120
))}
121121
</span>
122122
</Popover>
123-
</div>
123+
</span>
124124
)
125125
}
126126

127127
const useStyles = makeStyles((theme) => ({
128128
buttonContainer: {
129129
border: `1px solid ${theme.palette.divider}`,
130130
borderRadius: `${theme.shape.borderRadius}px`,
131+
display: "inline-block",
131132
},
132133
dropdownButton: {
133134
border: "none",

0 commit comments

Comments
 (0)