mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-06-15 04:21:21 +00:00
Set key
This commit is contained in:
parent
ae648af321
commit
ebed921b17
@ -347,6 +347,7 @@ export const AppsLibraryDesktop = ({
|
||||
{officialApps?.map((qapp) => {
|
||||
return (
|
||||
<ButtonBase
|
||||
key={`${qapp?.service}-${qapp?.name}`}
|
||||
sx={{
|
||||
width: '80px',
|
||||
}}
|
||||
|
@ -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>
|
||||
|
@ -54,6 +54,7 @@ export const Tutorials = () => {
|
||||
{openTutorialModal?.multi?.map((item, index) => {
|
||||
return (
|
||||
<Tab
|
||||
key={index}
|
||||
sx={{
|
||||
'&.Mui-selected': {
|
||||
color: theme.palette.text.primary,
|
||||
|
Loading…
x
Reference in New Issue
Block a user