diff --git a/src/components/TokenList.tsx b/src/components/TokenList.tsx
deleted file mode 100644
index 0b1dd429..00000000
--- a/src/components/TokenList.tsx
+++ /dev/null
@@ -1,41 +0,0 @@
-'use client'
-
-import { useQuery } from '@tanstack/react-query'
-
-export function TokenListDemo() {
- const tokenList = useQuery({
- queryKey: ['tokenList', 4217],
- queryFn: async () => {
- const response = await fetch('https://tokenlist.tempo.xyz/list/4217')
- const data = await response.json()
- if (!Object.hasOwn(data, 'tokens')) throw new Error('Invalid token list')
- return data.tokens as Array<{
- name: string
- symbol: string
- decimals: number
- chainId: number
- address: string
- logoURI: string
- extensions: { chain: string }
- }>
- },
- })
-
- return (
-
- )
-}
diff --git a/src/pages/quickstart/tokenlist.mdx b/src/pages/quickstart/tokenlist.mdx
index 45a87fde..9ab7b2fa 100644
--- a/src/pages/quickstart/tokenlist.mdx
+++ b/src/pages/quickstart/tokenlist.mdx
@@ -1,19 +1,14 @@
---
title: Tempo Token List Registry
-interactive: true
description: Query token metadata, icons, and prices on Tempo using the Uniswap Token Lists-compatible API, and submit new tokens via PR to the registry.
---
import { Callout } from 'vocs'
-import { TokenListDemo } from '../../components/TokenList.tsx'
-
# Tempo Token List Registry
A [Uniswap Token Lists](https://tokenlists.org)-compatible API for token metadata and icons on Tempo.
-As an example, here's Tempo's tokenlist, fetched from [tokenlist.tempo.xyz/list/4217](https://tokenlist.tempo.xyz/list/4217):
-
-
+Tempo's tokenlist, fetched from [tokenlist.tempo.xyz/list/4217](https://tokenlist.tempo.xyz/list/4217), is live on the [Explorer](https://explore.tempo.xyz/tokens).
## Endpoints