Fix prop order in Stream

As a general rule the locale prop should come first
This commit is contained in:
0x1eef 2024-05-01 09:40:27 -03:00
parent 17dc9a8499
commit d04f8d01e3

View file

@ -5,18 +5,18 @@ import { formatNumber, TFunction } from "~/lib/t";
import classNames from "classnames";
type Props = {
locale: TLocale;
surah: Surah;
stream: TAyat;
locale: TLocale;
endOfStream: boolean;
isPaused: boolean;
t: TFunction;
};
export function Stream({
locale,
surah,
stream,
locale,
endOfStream,
isPaused,
t,