Skip to content

Commit 22ccc27

Browse files
committed
fixing ci issues
1 parent a2e0c16 commit 22ccc27

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

app/components/Changelog/Card.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ function navigateToTitle() {
6363
<style module>
6464
.linkTitle::after {
6565
content: '__';
66-
@apply inline i-lucide:link rtl-flip ms-1 opacity-0 text-[0.75em];
66+
@apply inline i-lucide:link rtl-flip ms-1 opacity-0;
67+
font-size: 0.75em;
6768
}
6869
6970
.linkTitle:hover::after {

shared/schemas/changelog/release.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ export const GithubReleaseCollectionSchama = v.object({
1414
releases: v.array(GithubReleaseSchama),
1515
})
1616

17-
export type GithubRelease = v.InferOutput<typeof GithubReleaseSchama>
18-
export type GithubReleaseCollection = v.InferOutput<typeof GithubReleaseCollectionSchama>
17+
// keeping this here in case it's needed
18+
// export type GithubRelease = v.InferOutput<typeof GithubReleaseSchama>
19+
// export type GithubReleaseCollection = v.InferOutput<typeof GithubReleaseCollectionSchama>

test/nuxt/components/Changelog.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ describe('Changelog', () => {
1313
})
1414

1515
expect(component.text()).toContain(`Sorry, the changelog for npmx-dev couldn't be loaded`)
16-
expect(component.text()).toContain(`Please try again later or view on github`)
16+
expect(component.text()).toContain(`Please try again later or View on Github`)
1717
})
1818
})

0 commit comments

Comments
 (0)