push to stg

This commit is contained in:
Hugo Lextrait 2023-04-05 18:14:08 +02:00
parent 22b6b6baa5
commit 404a39b908
2 changed files with 1 additions and 2 deletions

View File

@ -21,5 +21,5 @@ version: 0.0.1
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 0.1.9
appVersion: 0.2.5

View File

@ -6,7 +6,6 @@ import Image from "next/image";
interface IProps {
className?: string;
}
export default class Loader extends React.Component<IProps> {
public override render(): JSX.Element {
return <Image src={LoaderIcon} className={[classes["loader"], this.props.className].filter(Boolean).join(" ")} alt={"Loader"} />;