Skip to content

Commit d9a889d

Browse files
committed
fix: code review
1 parent 25acd96 commit d9a889d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/astro/src/default/components/Logo.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ const logoDark = readLogoFile('logo-dark') ?? logo;
3232
if (!logo) {
3333
console.warn(
3434
[
35-
`No logo found in public/. Supported filenames are: logo.(${LOGO_EXTENSIONS.join('|')}) `,
36-
`(for the light theme) and logo-dark.(${LOGO_EXTENSIONS.join('|')}) (for the dark theme).`,
35+
`No logo found in public/. Supported filenames are: logo.(${LOGO_EXTENSIONS.join('|')}). `,
36+
`You can overwrite the logo for dark-mode by providing a logo-dark.(${LOGO_EXTENSIONS.join('|')}).`,
3737
].join(''),
3838
);
3939
}

0 commit comments

Comments
 (0)