Skip to content

Commit

Permalink
Update PackagesFab.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
stiemsdev committed Feb 23, 2024
1 parent e08d8f3 commit e69b22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PackagesFab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function PackagesDialog(props: PackagesDialogProps) {
<List sx={{pt: 0, minWidth: 250}} disablePadding>
{packages.map((pkg) => (
<ListItem disablePadding disableGutters key={pkg.title}>
<Tooltip condition={"stub" in pkg} title={`Import ${pkg.title} example`} placement="right" arrow>
<Tooltip condition={"stub" in pkg} title={`Import ${pkg.title} example`} placement="top" arrow>
<ListItemButton onClick={() => onSelect(pkg)} style={{textAlign: "center", color: "stub" in pkg ? "#666" : undefined }}>
<ListItemText
primary={pkg.title}
Expand Down

0 comments on commit e69b22f

Please sign in to comment.