Skip to content

Commit 2d0198d

Browse files
committed
fix: update deprecation warnings to use backticks for clarity
1 parent 1563ace commit 2d0198d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ export const checkOldConfig = (config: Record<string, any> = {}): Record<string,
3434
console.warn(`${WARN_PREFIX} Deprecated configuration options detected. These options will be ignored:`, deprecatedKeys)
3535

3636
if ('userCDN' in config) {
37-
console.warn(`${WARN_PREFIX} The userCDN option is deprecated. Please set the CDN option to 'custom' and use the \`customCDN\` option instead.`)
37+
console.warn(`${WARN_PREFIX} The \`userCDN\` option is deprecated. Please set the CDN option to \`custom\` and use the \`customCDN\` option instead.`)
3838
}
3939

4040
if ('lockView' in config) {
41-
console.warn(`${WARN_PREFIX} The lockView option is deprecated and will be ignored.`)
41+
console.warn(`${WARN_PREFIX} The \`lockView\` option is deprecated and will be ignored.`)
4242
}
4343

4444
return Object.fromEntries(

0 commit comments

Comments
 (0)