Joining as {meeting.self.name}
diff --git a/docs/react-ui-kit/build-pre-call-ui/default-setup-screen.mdx b/docs/react-ui-kit/build-pre-call-ui/default-setup-screen.mdx
index 724e4f3f9..5a1ae70d7 100644
--- a/docs/react-ui-kit/build-pre-call-ui/default-setup-screen.mdx
+++ b/docs/react-ui-kit/build-pre-call-ui/default-setup-screen.mdx
@@ -26,14 +26,14 @@ export default function MyMeeting() {
const { meeting } = useDyteMeeting();
const roomState = useDyteSelector((m) => m.self.roomState);
-return (
-
-{roomState === 'init' && }
-{roomState === 'joined' &&
Custom in-meeting UI}
-{roomState === 'ended' && Custom post-meeting UI}
-
-);
-}`
-} />
+ return (
+
+ {roomState === 'init' && }
+ {roomState === 'joined' &&
Custom in-meeting UI}
+ {roomState === 'ended' && Custom post-meeting UI}
+
+ );
+}
+`}/>
If you want to build a custom pre-call UI, let's go to the next page to start building one.
diff --git a/docs/react-ui-kit/components/dyte-participant-tile.mdx b/docs/react-ui-kit/components/dyte-participant-tile.mdx
index 6ef1614d6..afe2660ab 100644
--- a/docs/react-ui-kit/components/dyte-participant-tile.mdx
+++ b/docs/react-ui-kit/components/dyte-participant-tile.mdx
@@ -73,17 +73,17 @@ import { useDyteMeeting } from "@dytesdk/react-web-core";
export default function MyMeetingUI() {
const { meeting } = useDyteMeeting();
-return (
-
-
-
-
-
-);
+
+
+
+
+ );
}
`} />
diff --git a/docs/react-ui-kit/quickstart.mdx b/docs/react-ui-kit/quickstart.mdx
index f10799f2d..f5583459b 100644
--- a/docs/react-ui-kit/quickstart.mdx
+++ b/docs/react-ui-kit/quickstart.mdx
@@ -110,6 +110,7 @@ For more information on the other props of `DyteMeeting`, see
import CodeRunner from '@site/src/components/CodeRunner/CodeRunner';
+
);
+
} `} />
diff --git a/docs/ui-kit/quickstart.mdx b/docs/ui-kit/quickstart.mdx
index d9debff93..26c428560 100644
--- a/docs/ui-kit/quickstart.mdx
+++ b/docs/ui-kit/quickstart.mdx
@@ -102,10 +102,11 @@ import CodeRunner from '@site/src/components/CodeRunner/CodeRunner';
highlight={[{start: 10, end: 10}]}
hide={[{start:1, end: 8}]}
framework='static'
-file={`
+file={`
+
@@ -127,8 +128,7 @@ file={`
document.getElementById('my-meeting').meeting = meeting;
};
-init();
-
+ init();
`}