Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Andcool-Systems committed Aug 11, 2024
1 parent c72a23a commit afccf4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/modules/components/card.module.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const Card = ({ el, base64, className }: { el: Bandage, base64: string, c
}, [starred]);

return (
<div key={el.id}>
<div key={el.id} style={{ position: 'relative' }}>
<div className={`${Style.head_container} ${className?.skin_description_props}`}>
<div className={Style.star_container}>
<NextImage
Expand Down
2 changes: 1 addition & 1 deletion src/app/workshop/[id]/bandage_engine.module.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ class Client {
let bandage_canvas = this.pepe_canvas;
let lining_canvas = this.lining_canvas;

if (this.split_types && this.slim) {
if (this.split_types && this.slim && [0, 2].includes(this.body_part)) {
bandage_canvas = this.pepe_canvas_slim;
lining_canvas = this.lining_canvas_slim;
}
Expand Down

0 comments on commit afccf4d

Please sign in to comment.