Fix linting error

This commit is contained in:
SleeplessOne1917 2023-08-30 22:55:33 -04:00
parent 8301c2eabb
commit 27335fa4bf
4 changed files with 7 additions and 7 deletions

View file

@ -17,7 +17,7 @@ class AuthGuard extends Component<
constructor(
props: RouteComponentProps<Record<string, string>>,
context: any
context: any,
) {
super(props, context);
}
@ -26,7 +26,7 @@ class AuthGuard extends Component<
if (!UserService.Instance.myUserInfo) {
const { pathname, search } = this.props.location;
this.context.router.history.replace(
`/login?prev=${encodeURIComponent(pathname + search)}`
`/login?prev=${encodeURIComponent(pathname + search)}`,
);
} else {
this.setState({ hasRedirected: true });

View file

@ -66,7 +66,7 @@ export function SubscribeButton({
type="button"
className={classNames(
buttonClass,
`btn-${subscribed === "Pending" ? "warning" : "secondary"}`
`btn-${subscribed === "Pending" ? "warning" : "secondary"}`,
)}
onClick={subscribed === "NotSubscribed" ? onFollow : onUnFollow}
>
@ -102,7 +102,7 @@ function focusInput() {
function submitRemoteFollow(
{ state: { instanceText }, props: { communityActorId } }: RemoteFetchModal,
event: Event
event: Event,
) {
event.preventDefault();
@ -116,7 +116,7 @@ function submitRemoteFollow(
}
window.location.href = `${instanceText}/activitypub/externalInteraction?uri=${encodeURIComponent(
communityActorId
communityActorId,
)}`;
}

View file

@ -84,7 +84,7 @@ async function handleLoginSubmit(i: Login, event: any) {
function handleLoginUsernameChange(i: Login, event: any) {
i.setState(
prevState => (prevState.form.username_or_email = event.target.value.trim())
prevState => (prevState.form.username_or_email = event.target.value.trim()),
);
}

View file

@ -1,5 +1,5 @@
export default function isAuthPath(pathname: string) {
return /^\/(create_.*?|inbox|settings|admin|reports|registration_applications|activitypub.*?)\b/g.test(
pathname
pathname,
);
}