File tree Expand file tree Collapse file tree 11 files changed +12
-12
lines changed
Expand file tree Collapse file tree 11 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11import { PageBase } from "web/components/page-base" ;
22import { Col } from "web/components/layout/col" ;
33import ReactMarkdown from "react-markdown" ;
4- import React from "react" ;
4+
55import Link from "next/link" ;
66import { SEO } from "web/components/SEO" ;
77import { capitalize } from "lodash" ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { Title } from 'web/components/widgets/title'
77import { ExternalLinkIcon } from '@heroicons/react/outline'
88import { discordLink , formLink , githubIssues } from "common/constants" ;
99import { SEO } from "web/components/SEO" ;
10- import React from "react" ;
10+
1111
1212export default function Custom404 ( props : { customText ?: string } ) {
1313 return (
Original file line number Diff line number Diff line change 11import { PageBase } from 'web/components/page-base'
22import { Col } from 'web/components/layout/col'
33import { SEO } from "web/components/SEO" ;
4- import React from "react" ;
4+
55
66export default function ConfirmEmail ( ) {
77 return (
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import {SEO} from 'web/components/SEO'
33import Link from 'next/link'
44import { Col } from 'web/components/layout/col'
55import { Row } from 'web/components/layout/row'
6- import React from "react" ;
6+
77
88export default function HelpPage ( ) {
99 return (
Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ import {Col} from 'web/components/layout/col'
33import { useUser } from 'web/hooks/use-user'
44import { LoggedOutHome } from "web/components/home/home" ;
55import { ProfilesHome } from "web/components/profiles/profiles-home" ;
6- import React from "react" ;
6+
77
88
99export default function ProfilesPage ( ) {
1010 const user = useUser ( ) ;
1111 console . debug ( 'user:' , user )
1212
1313 if ( user === undefined ) {
14- return < div />
14+ return < PageBase trackPageView = { 'loading' } />
1515 }
1616
1717 return (
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import { MultipleOrSingleAvatars } from 'web/components/multiple-or-single-avata
2020import { BannedBadge } from 'web/components/widgets/user-link'
2121import { PrivateMessageChannel } from 'common/supabase/private-messages'
2222import { SEO } from "web/components/SEO" ;
23- import React from "react" ;
23+
2424
2525export default function MessagesPage ( ) {
2626 useRedirectIfSignedOut ( )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import {GeneralButton} from "web/components/buttons/general-button";
33import clsx from "clsx" ;
44import { Col } from "web/components/layout/col" ;
55import { SEO } from "web/components/SEO" ;
6- import React from "react" ;
6+
77
88
99export default function Organization ( ) {
Original file line number Diff line number Diff line change 11import { PageBase } from "web/components/page-base" ;
22import { supportEmail } from "common/constants" ;
33import { SEO } from "web/components/SEO" ;
4- import React from "react" ;
4+
55
66// TODO: convert to MarkDown for better readability during modifications?
77export default function PrivacyPage ( ) {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import {GeneralButton} from "web/components/buttons/general-button";
44import clsx from "clsx" ;
55import { Col } from "web/components/layout/col" ;
66import { SEO } from "web/components/SEO" ;
7- import React from "react" ;
7+
88
99
1010export default function Social ( ) {
Original file line number Diff line number Diff line change 11import { PageBase } from "web/components/page-base" ;
22import { supportEmail } from "common/constants" ;
33import { SEO } from "web/components/SEO" ;
4- import React from "react" ;
4+
55
66// TODO: convert to MarkDown for better readability during modifications?
77export default function TermsPage ( ) {
You can’t perform that action at this time.
0 commit comments