Add deep link button to Featured studios editor to open Community
cgen-2439b74b5a3143c39442f52ae371a793
This commit is contained in:
parent
7b650c3e7e
commit
abb585c932
1 changed files with 12 additions and 9 deletions
|
|
@ -1164,15 +1164,18 @@ export default function Admin() {
|
|||
</div>
|
||||
))}
|
||||
<div className="flex flex-wrap justify-between gap-2">
|
||||
<Button
|
||||
size="sm"
|
||||
variant="outline"
|
||||
onClick={() =>
|
||||
setStudios([...studios, { name: "New Studio" }])
|
||||
}
|
||||
>
|
||||
Add studio
|
||||
</Button>
|
||||
<div className="flex gap-2">
|
||||
<Button
|
||||
size="sm"
|
||||
variant="outline"
|
||||
onClick={() =>
|
||||
setStudios([...studios, { name: "New Studio" }])
|
||||
}
|
||||
>
|
||||
Add studio
|
||||
</Button>
|
||||
<Button size="sm" variant="outline" onClick={() => navigate("/community#featured-studios")}>Open community</Button>
|
||||
</div>
|
||||
<Button
|
||||
size="sm"
|
||||
onClick={async () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue