This commit is contained in:
Nicola Benaglia 2025-05-29 20:28:15 +02:00
parent ae648af321
commit ebed921b17
3 changed files with 4 additions and 2 deletions

View File

@ -347,6 +347,7 @@ export const AppsLibraryDesktop = ({
{officialApps?.map((qapp) => {
return (
<ButtonBase
key={`${qapp?.service}-${qapp?.name}`}
sx={{
width: '80px',
}}

View File

@ -249,11 +249,11 @@ export const SortablePinnedApps = ({
>
{transformPinnedApps.map((app) => (
<SortableItem
app={app}
id={`${app?.service}-${app?.name}`}
isDesktop={isDesktop}
key={`${app?.service}-${app?.name}`}
id={`${app?.service}-${app?.name}`}
name={app?.name}
app={app}
/>
))}
</SortableContext>

View File

@ -54,6 +54,7 @@ export const Tutorials = () => {
{openTutorialModal?.multi?.map((item, index) => {
return (
<Tab
key={index}
sx={{
'&.Mui-selected': {
color: theme.palette.text.primary,