diff --git a/CHANGELOG.md b/CHANGELOG.md index 0970172..6867f10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - combined notificationts to become more versatile - use exported hooks for graphql - +- disable swipe gesture ### Fixed diff --git a/components/auth/footer.tsx b/components/auth/footer.tsx index ca2c05d..5e8d624 100644 --- a/components/auth/footer.tsx +++ b/components/auth/footer.tsx @@ -1,5 +1,4 @@ import { Button, Select } from 'antd' -import getConfig from 'next/config' import Link from 'next/link' import { useRouter } from 'next/router' import React from 'react' @@ -7,12 +6,9 @@ import GitHubButton from 'react-github-button' import { useTranslation } from 'react-i18next' import { useSettingsQuery } from '../../graphql/query/settings.query' import { languages } from '../../i18n' -import { NextConfigType } from '../../next.config.type' import { clearAuth, withAuth } from '../with.auth' import scss from './footer.module.scss' -const { publicRuntimeConfig } = getConfig() as NextConfigType - interface Props { me?: { id: string @@ -42,7 +38,6 @@ const AuthFooterInner: React.FC = (props) => {