mirror of
https://github.com/vector-im/element-call.git
synced 2026-03-31 07:00:26 +00:00
lint
This commit is contained in:
@@ -8,7 +8,6 @@ Please see LICENSE in the repository root for full details.
|
||||
import {
|
||||
Button as CpdButton,
|
||||
Tooltip,
|
||||
Separator,
|
||||
Search,
|
||||
Form,
|
||||
Alert,
|
||||
|
||||
@@ -12,11 +12,10 @@ import {
|
||||
useEffect,
|
||||
useState,
|
||||
} from "react";
|
||||
import "@formatjs/intl-durationformat/polyfill";
|
||||
import { DurationFormat } from "@formatjs/intl-durationformat";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
import { ReactionIndicator } from "./ReactionIndicator";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
const durationFormatter = new DurationFormat(undefined, {
|
||||
minutesDisplay: "always",
|
||||
|
||||
@@ -7,9 +7,9 @@ Please see LICENSE in the repository root for full details.
|
||||
|
||||
import { PropsWithChildren, ReactNode } from "react";
|
||||
import classNames from "classnames";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
import styles from "./ReactionIndicator.module.css";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
export function ReactionIndicator({
|
||||
emoji,
|
||||
|
||||
@@ -32,7 +32,7 @@ export const PreferencesSettingsTab: FC = () => {
|
||||
const onChangeSetting = (
|
||||
e: ChangeEvent<HTMLInputElement>,
|
||||
fn: (value: boolean) => void,
|
||||
) => {
|
||||
): void => {
|
||||
fn(e.target.checked);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user