diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-12-15 11:00:03 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-12-15 11:00:03 -0800 |
| commit | f65d70af9c1118d10efd78ceb8065d31ee1999c5 (patch) | |
| tree | 35fa9506b10fb5f1aa68a4f909912d04d99a5819 | |
| parent | d25c4ff7f2252f363c7403cd2ad807c46caf2383 (diff) | |
change graph url
| -rw-r--r-- | src/app/page.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/page.tsx b/src/app/page.tsx index e02e26e..fb7f1a3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,13 @@ import SubscriberTable, {SubscriberDataTableProp} from '../components/Subscriber import TitleBar from '../components/TitleBar/TitleBar'; async function Home(){ - const apiUrl = process.env.NEXT_PUBLIC_API_URL_TESTING + const graphURL = process.env.NEXT_PUBLIC_GRAPH_URL const data: SubscriberDataTableProp = await getData(); return( <> <TitleBar title="PhaseTracker" backgroundColor='black' /> <div className="sm:block hidden mt-4" style={{ overflow: 'hidden', height: '105vh', position: 'relative' }}> - <iframe src={apiUrl} style={{ position: 'absolute', top: 0, left: 0 }} width="100%" height="100%"></iframe> + <iframe src={graphURL} style={{ position: 'absolute', top: 0, left: 0 }} width="100%" height="100%"></iframe> </div> <SubscriberTable {...data} /> </> |
