This commit is contained in:
commit
db0357be7b
|
@ -264,7 +264,7 @@ export function PinnedItems(props: {
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{pinned.map((element, index) => (
|
{pinned.map((element, index) => (
|
||||||
<div className="relative mb-4">
|
<div className="relative mb-4" key={element.key}>
|
||||||
{element}
|
{element}
|
||||||
|
|
||||||
{editMode && <CrossIcon onClick={() => onDeleteClicked(index)} />}
|
{editMode && <CrossIcon onClick={() => onDeleteClicked(index)} />}
|
||||||
|
|
|
@ -54,13 +54,15 @@ export default function Welcome() {
|
||||||
if (isTwitch || !user || (!user.shouldShowWelcome && !groupSelectorOpen))
|
if (isTwitch || !user || (!user.shouldShowWelcome && !groupSelectorOpen))
|
||||||
return <></>
|
return <></>
|
||||||
|
|
||||||
|
if (groupSelectorOpen)
|
||||||
return (
|
return (
|
||||||
<>
|
|
||||||
<GroupSelectorDialog
|
<GroupSelectorDialog
|
||||||
open={groupSelectorOpen}
|
open={groupSelectorOpen}
|
||||||
setOpen={() => setGroupSelectorOpen(false)}
|
setOpen={() => setGroupSelectorOpen(false)}
|
||||||
/>
|
/>
|
||||||
|
)
|
||||||
|
|
||||||
|
return (
|
||||||
<Modal open={open} setOpen={toggleOpen}>
|
<Modal open={open} setOpen={toggleOpen}>
|
||||||
<Col className="h-[32rem] place-content-between rounded-md bg-white px-8 py-6 text-sm font-light md:h-[40rem] md:text-lg">
|
<Col className="h-[32rem] place-content-between rounded-md bg-white px-8 py-6 text-sm font-light md:h-[40rem] md:text-lg">
|
||||||
{page === 0 && <Page0 />}
|
{page === 0 && <Page0 />}
|
||||||
|
@ -94,7 +96,6 @@ export default function Welcome() {
|
||||||
</Col>
|
</Col>
|
||||||
</Col>
|
</Col>
|
||||||
</Modal>
|
</Modal>
|
||||||
</>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,6 +118,7 @@ function PageIndicator(props: { page: number; totalpages: number }) {
|
||||||
<Row>
|
<Row>
|
||||||
{[...Array(totalpages)].map((e, i) => (
|
{[...Array(totalpages)].map((e, i) => (
|
||||||
<div
|
<div
|
||||||
|
key={i}
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'mx-1.5 my-auto h-1.5 w-1.5 rounded-full',
|
'mx-1.5 my-auto h-1.5 w-1.5 rounded-full',
|
||||||
i === page ? 'bg-indigo-500' : 'bg-gray-300'
|
i === page ? 'bg-indigo-500' : 'bg-gray-300'
|
||||||
|
|
|
@ -277,6 +277,7 @@ function renderSections(
|
||||||
if (id === 'featured') {
|
if (id === 'featured') {
|
||||||
return (
|
return (
|
||||||
<FeaturedSection
|
<FeaturedSection
|
||||||
|
key={id}
|
||||||
globalConfig={globalConfig}
|
globalConfig={globalConfig}
|
||||||
pinned={pinned}
|
pinned={pinned}
|
||||||
isAdmin={isAdmin}
|
isAdmin={isAdmin}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user