We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fb2752 commit 545f933Copy full SHA for 545f933
packages/api-client/src/components/AddressBar/AddressBar.vue
@@ -187,7 +187,7 @@ function getCompleteUrl(): string {
187
// Fallback to basic URL construction if no active example
188
const serverString = replaceTemplateVariables(server?.url ?? '', env)
189
const pathString = replaceTemplateVariables(operation.path, env)
190
- let url = serverString || pathString
+ const url = serverString || pathString
191
192
if (!url) return ''
193
0 commit comments