From 9a926286c3e90677cf2d31fd349295cdaa6aa90b Mon Sep 17 00:00:00 2001 From: harshithpabbati Date: Tue, 12 Apr 2022 12:04:19 +0530 Subject: [PATCH] Address changes --- custom/basic-call/pages/not-found.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/custom/basic-call/pages/not-found.js b/custom/basic-call/pages/not-found.js index 1e9a56c..45d5408 100644 --- a/custom/basic-call/pages/not-found.js +++ b/custom/basic-call/pages/not-found.js @@ -5,9 +5,11 @@ import { useRouter } from 'next/router'; export default function RoomNotFound() { const router = useRouter(); + const returnToHomePage = () => router.push('/'); + return (
- router.push('/')}> + The room you are trying to join does not exist. Have you created the room using the Daily REST API or the dashboard?