diff --git a/src/core/client/stream/components/App.tsx b/src/core/client/stream/components/App.tsx index 39272cb17..6dd7f0729 100644 --- a/src/core/client/stream/components/App.tsx +++ b/src/core/client/stream/components/App.tsx @@ -1,8 +1,6 @@ import * as React from "react"; import { StatelessComponent } from "react"; -import { Flex } from "talk-ui/components"; - import PermalinkViewQuery from "../queries/PermalinkViewQuery"; import StreamQuery from "../queries/StreamQuery"; @@ -18,11 +16,7 @@ const App: StatelessComponent = props => { ) : ( ); - return ( - - {view} - - ); + return
{view}
; }; export default App; diff --git a/src/core/client/stream/components/UserBoxUnauthenticated.tsx b/src/core/client/stream/components/UserBoxUnauthenticated.tsx index 51e1e11b7..9dbce544c 100644 --- a/src/core/client/stream/components/UserBoxUnauthenticated.tsx +++ b/src/core/client/stream/components/UserBoxUnauthenticated.tsx @@ -14,7 +14,7 @@ const UserBoxUnauthenticated: StatelessComponent< UserBoxUnauthenticatedProps > = props => { return ( - + = props => { diff --git a/src/core/client/ui/components/Typography/Typography.tsx b/src/core/client/ui/components/Typography/Typography.tsx index a4ab393cc..40b9d92fe 100644 --- a/src/core/client/ui/components/Typography/Typography.tsx +++ b/src/core/client/ui/components/Typography/Typography.tsx @@ -14,6 +14,7 @@ type Variant = | "heading4" | "bodyCopy" | "bodyCopyBold" + | "inputLabel" | "timestamp"; // Based on Typography Component of Material UI. @@ -133,6 +134,7 @@ Typography.defaultProps = { bodyCopy: "p", bodyCopyBold: "p", timestamp: "span", + inputLabel: "label", }, noWrap: false, paragraph: false,