lint, tsc
This commit is contained in:
@@ -1,14 +1,9 @@
|
||||
import * as React from "react";
|
||||
import Frame from "./components/Frame";
|
||||
import Image from "./components/Image";
|
||||
import { EmbedProps as Props } from ".";
|
||||
|
||||
const URL_REGEX = new RegExp("^https?://drive.google.com/file/d/(.*)$");
|
||||
type Props = {
|
||||
attrs: {
|
||||
href: string;
|
||||
matches: string[];
|
||||
};
|
||||
};
|
||||
|
||||
export default class GoogleDrive extends React.Component<Props> {
|
||||
static ENABLED = [URL_REGEX];
|
||||
@@ -16,7 +11,6 @@ export default class GoogleDrive extends React.Component<Props> {
|
||||
render() {
|
||||
return (
|
||||
<Frame
|
||||
// @ts-expect-error ts-migrate(2322) FIXME: Type '{ src: string; icon: Element; title: string;... Remove this comment to see the full error message
|
||||
src={this.props.attrs.href.replace("/view", "/preview")}
|
||||
icon={
|
||||
<Image
|
||||
|
||||
Reference in New Issue
Block a user