eslint: use semicolon TypeScript delimeter

This commit is contained in:
Alex Gleason
2023-10-02 13:54:02 -05:00
parent 702124fb79
commit 645ce60a5f
479 changed files with 1928 additions and 1938 deletions

View File

@ -6,7 +6,7 @@ import { useAppSelector, useAppDispatch } from 'soapbox/hooks';
import { makeGetStatus } from 'soapbox/selectors';
interface IQuotedStatusContainer {
composeId: string
composeId: string;
}
/** QuotedStatus shown in post composer. */

View File

@ -10,7 +10,7 @@ import Warning from '../components/warning';
const APPROX_HASHTAG_RE = /(?:^|[^/)\w])#(\w*[a-zA-Z·]\w*)/i;
interface IWarningWrapper {
composeId: string
composeId: string;
}
const WarningWrapper: React.FC<IWarningWrapper> = ({ composeId }) => {