diff --git a/packages/web/components/v2/CreateConversation.tsx b/packages/web/components/v2/CreateConversation.tsx index 0116370..7272f16 100644 --- a/packages/web/components/v2/CreateConversation.tsx +++ b/packages/web/components/v2/CreateConversation.tsx @@ -1,7 +1,7 @@ import { Select, Tag } from "antd"; import Avatar from "antd/lib/avatar/avatar"; import { useEffect, useRef } from "react"; -import { FaRegTimesCircle } from "react-icons/fa"; +import { FaPaperPlane, FaRegTimesCircle } from "react-icons/fa"; const options = [ { value: "gold" }, @@ -22,9 +22,9 @@ export default function CreateConversation() { // if it's an existing user, then show a nice chip of that user's profile picture and their name return ( -
+
+ + +
); } diff --git a/packages/web/pages/s/index.tsx b/packages/web/pages/s/index.tsx index 3630f10..ebb8aac 100644 --- a/packages/web/pages/s/index.tsx +++ b/packages/web/pages/s/index.tsx @@ -63,50 +63,58 @@ export default function Me() { fullCleanPageContent = ; } + if (fullCleanPageContent) { + return ( +
+
+ + + + + ESC + + +
+ {fullCleanPageContent} +
+ ); + } + + return ( +
+ + + + +
+ {getCurrentContent()} +
+
+
+
+ ); +} + +Me.getLayout = function (content: ReactElement) { return (
- {fullCleanPageContent ? ( -
-
- - - - - ESC - - -
- {fullCleanPageContent} -
- ) : ( -
- - - - -
- {getCurrentContent()} -
-
-
-
- )} + {content}
); -} +};