Skip to content

Commit 2e33497

Browse files
committed
spl token multisig
1 parent e74ce4f commit 2e33497

File tree

7 files changed

+2122
-133
lines changed

7 files changed

+2122
-133
lines changed

src/components/Tabs/Tabs.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,12 @@ type Props = {
3535
}
3636

3737
export function Tabs({ sharedStore, ...slots }: Props) {
38-
const tabs = Object.entries(slots).filter(isTabSlotEntry)
39-
const panels = Object.entries(slots).filter(isPanelSlotEntry)
38+
const tabs = Object.entries(slots)
39+
.filter(isTabSlotEntry)
40+
.sort(([a], [b]) => a.localeCompare(b))
41+
const panels = Object.entries(slots)
42+
.filter(isPanelSlotEntry)
43+
.sort(([a], [b]) => a.localeCompare(b))
4044

4145
/** Used to focus next and previous tab on arrow key press */
4246
const tabButtonRefs = useRef<Record<TabSlot, HTMLButtonElement | null>>({})

src/config/sidebar.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1498,6 +1498,10 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
14981498
title: "BurnMint: Direct Mint Authority Transfer (Development)",
14991499
url: "ccip/tutorials/svm/cross-chain-tokens/direct-mint-authority",
15001500
},
1501+
{
1502+
title: "BurnMint: Production Multisig Configuration",
1503+
url: "ccip/tutorials/svm/cross-chain-tokens/production-multisig",
1504+
},
15011505
],
15021506
},
15031507
],

0 commit comments

Comments
 (0)