depploy staging

This commit is contained in:
Hugo Lextrait 2023-04-17 17:46:14 +02:00
parent f3b178c58b
commit 9b361ef72b
3 changed files with 4 additions and 4 deletions

View File

@ -21,4 +21,4 @@ version: 0.0.1
# incremented each time you make changes to the application. Versions are not expected to # 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. # follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes. # It is recommended to use it with quotes.
appVersion: 0.4.2 appVersion: 0.4.3

View File

@ -38,8 +38,8 @@ export default function Button(props: IProps) {
const attributes = { ...props, variant, disabled, type, isloading, fullwidth }; const attributes = { ...props, variant, disabled, type, isloading, fullwidth };
delete attributes.icon; delete attributes.icon;
delete attributes.iconStyle; delete attributes.iconstyle;
delete attributes.iconPosition; delete attributes.iconposition;
return ( return (
<button {...attributes} onClick={onClick} className={classes["root"]} type={type}> <button {...attributes} onClick={onClick} className={classes["root"]} type={type}>
{icon && iconposition === "left" && <Image src={icon} style={iconstyle} alt={"button icon"} />} {icon && iconposition === "left" && <Image src={icon} style={iconstyle} alt={"button icon"} />}

View File

@ -1,3 +1,3 @@
{ {
"version": "v0.4.2" "version": "v0.4.3"
} }