]> Untitled Git - lemmy-ui.git/commitdiff
Add I18nKeys type to errCode
authorshilangyu <xmarcinmarcin@gmail.com>
Mon, 1 Mar 2021 20:44:02 +0000 (21:44 +0100)
committershilangyu <xmarcinmarcin@gmail.com>
Mon, 1 Mar 2021 20:44:02 +0000 (21:44 +0100)
src/shared/components/no-match.tsx

index b11c0e54571ec1019a5f146cf6ef402fd9c65637..175f4a9b2a7176cdabe0663adbd67ccede87b236 100644 (file)
@@ -1,8 +1,11 @@
+import { I18nKeys } from "i18next";
 import { Component } from "inferno";
 import { i18n } from "../i18next";
 
 export class NoMatch extends Component<any, any> {
-  private errCode = new URLSearchParams(this.props.location.search).get("err");
+  private errCode = new URLSearchParams(this.props.location.search).get(
+    "err"
+  ) as I18nKeys;
 
   constructor(props: any, context: any) {
     super(props, context);