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 f040f50 commit 93d7af2Copy full SHA for 93d7af2
airbyte-webapp/src/views/Connector/ServiceForm/components/Controls/Instruction.tsx
@@ -71,8 +71,8 @@ const DocumentationPanel: React.FC<{ onClose: () => void } & IProps> = ({
71
const config = useConfig();
72
const { data: docs, isLoading } = useDocumentation(documentationUrl);
73
74
- const removeBaseUrl = (url: { path: string }) => {
75
- if (url.path.startsWith("../../")) {
+ const removeBaseUrl = (url: { path?: string }) => {
+ if (url.path?.startsWith("../../")) {
76
return url.path.replace("../../", `${config.integrationUrl}/`);
77
}
78
return url.path;
0 commit comments