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