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

@@ -5,7 +5,7 @@ import { useSettings } from 'soapbox/hooks';
interface IPinnedHostsPicker {
/** The active host among pinned hosts. */
host?: string
host?: string;
}
const PinnedHostsPicker: React.FC<IPinnedHostsPicker> = ({ host: activeHost }) => {

View File

@@ -14,8 +14,8 @@ import PinnedHostsPicker from './components/pinned-hosts-picker';
interface IRemoteTimeline {
params?: {
instance?: string
}
instance?: string;
};
}
/** View statuses from a remote instance. */