Skip to content

Commit 87ccaf4

Browse files
authored
Merge pull request #630 from EffortlessSteven/chore/fix-prettier-formatting
chore(ci): resolve Prettier check failures in README, saas, and images.ts
2 parents afb0409 + 364183f commit 87ccaf4

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ We're embarking on an exciting journey with **AstroWind 2.0**, and we want you t
6464

6565
<br>
6666

67-
6867
## TL;DR
6968

7069
```shell

src/pages/homes/saas.astro

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,8 @@ const metadata = {
5151
}}
5252
>
5353
<Fragment slot="title">
54-
Simplify web design with Astrowind: <br /> your ultimate <span class="text-accent dark:text-white"
55-
>SaaS</span
56-
> companion<br />
54+
Simplify web design with Astrowind: <br /> your ultimate <span class="text-accent dark:text-white">SaaS</span> companion<br
55+
/>
5756
</Fragment>
5857

5958
<Fragment slot="subtitle">

src/utils/images.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,7 @@ export const adaptOpenGraphImages = async (
8787
typeof resolvedImage !== 'string' && resolvedImage?.width <= defaultWidth
8888
? [resolvedImage?.width, resolvedImage?.height]
8989
: [defaultWidth, defaultHeight];
90-
_image = (
91-
await astroAssetsOptimizer(resolvedImage, [dimensions[0]], dimensions[0], dimensions[1], 'jpg')
92-
)[0];
90+
_image = (await astroAssetsOptimizer(resolvedImage, [dimensions[0]], dimensions[0], dimensions[1], 'jpg'))[0];
9391
}
9492

9593
if (typeof _image === 'object') {

0 commit comments

Comments
 (0)