Skip to content

Commit

Permalink
ignore react typing errors until until Semantic-Org/Semantic-UI-React…
Browse files Browse the repository at this point in the history
…#4356 is merged
  • Loading branch information
Sergey Bargamon committed Apr 18, 2022
1 parent 038920b commit 3209188
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 3 deletions.
2 changes: 2 additions & 0 deletions components/cloudinary.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// until /~https://github.com/Semantic-Org/Semantic-UI-React/pull/4356 is merged
// @ts-nocheck
import React, { useEffect, useState } from "react";
import { Grid, Message, Placeholder } from "semantic-ui-react";
import { prepareImgProps } from "../utils";
Expand Down
4 changes: 4 additions & 0 deletions components/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// until /~https://github.com/Semantic-Org/Semantic-UI-React/pull/4356 is merged
// @ts-nocheck

import React from "react";
import Link from "next/link";
import { Container, Grid, Icon, Segment } from "semantic-ui-react";
Expand Down Expand Up @@ -63,6 +66,7 @@ const Source: React.FC = () => (

export const Footer: React.FC = () => {
return (
// @ts-ignore
<Segment className={style.main} inverted basic>
<Container className="main">
<Grid inverted>
Expand Down
3 changes: 3 additions & 0 deletions components/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// until /~https://github.com/Semantic-Org/Semantic-UI-React/pull/4356 is merged
// @ts-nocheck

import { Grid, Header, Ref, Segment, Sticky } from "semantic-ui-react";
import React, { createRef, useState } from "react";
import Link from "next/link";
Expand Down
4 changes: 4 additions & 0 deletions components/post_full.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// until /~https://github.com/Semantic-Org/Semantic-UI-React/pull/4356 is merged
// @ts-nocheck

import React, { memo } from "react";
import { Item, Header, Divider, Grid } from "semantic-ui-react";
import { PostInterface } from "../models/posts";
Expand All @@ -9,6 +12,7 @@ import { RenderPost } from "./render";

export const PostFull: React.FC<PostInterface> = memo(({ full, ...rest }) => {
return (
// @ts-ignore
<Grid>
<Grid.Row>
<Grid.Column computer={10} mobile={16}>
Expand Down
3 changes: 3 additions & 0 deletions components/render.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// until /~https://github.com/Semantic-Org/Semantic-UI-React/pull/4356 is merged
// @ts-nocheck

import React from "react";
import { Divider, Image, List } from "semantic-ui-react";
import { Elements, PostFull, Types } from "../models/tree";
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions pages/tag/[...tag].tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// until /~https://github.com/Semantic-Org/Semantic-UI-React/pull/4356 is merged
// @ts-nocheck

import React from "react";
import { Header } from "semantic-ui-react";
import { GetStaticPaths, GetStaticProps } from "next";
Expand Down
1 change: 1 addition & 0 deletions tsconfig.tsbuildinfo

Large diffs are not rendered by default.

1 comment on commit 3209188

@vercel
Copy link

@vercel vercel bot commented on 3209188 Apr 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

barhamon – ./

barhamon.com
barhamon.vercel.app
barhamon-git-master-lurk.vercel.app
barhamon-lurk.vercel.app

Please sign in to comment.