Drop unneccessary usage of 'classNames'

This commit is contained in:
0x1eef 2024-06-11 13:21:06 -03:00
parent f1d212a105
commit f71a89a0f7

View file

@ -53,7 +53,7 @@ export function Stream({ locale, surah, stream, endOfStream, isPaused, t }: Prop
{t(locale, "of")} {formatNumber(locale, surah.ayat.length)}
</span>
</span>
<p className={classNames("m-0")}>{ayah.body}</p>
<p className="m-0">{ayah.body}</p>
</li>
);
})}