We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa5c24d commit 0f39d41Copy full SHA for 0f39d41
extensions/ql-vscode/src/view/data-extensions-editor/MethodRow.tsx
@@ -67,7 +67,7 @@ export const MethodRow = (props: Props) => {
67
if (methodCanBeModeled) {
68
return <ModelableMethodRow {...props} />;
69
} else {
70
- return <UmmodelableMethodRow {...props} />;
+ return <UnmodelableMethodRow {...props} />;
71
}
72
};
73
@@ -233,7 +233,7 @@ function ModelableMethodRow(props: Props) {
233
);
234
235
236
-function UmmodelableMethodRow(props: {
+function UnmodelableMethodRow(props: {
237
externalApiUsage: ExternalApiUsage;
238
mode: Mode;
239
}) {
0 commit comments