This commit is contained in:
Robert
2023-07-12 16:37:18 +01:00
parent fa5c24d837
commit 0f39d41e50

View File

@@ -67,7 +67,7 @@ export const MethodRow = (props: Props) => {
if (methodCanBeModeled) {
return <ModelableMethodRow {...props} />;
} else {
return <UmmodelableMethodRow {...props} />;
return <UnmodelableMethodRow {...props} />;
}
};
@@ -233,7 +233,7 @@ function ModelableMethodRow(props: Props) {
);
}
function UmmodelableMethodRow(props: {
function UnmodelableMethodRow(props: {
externalApiUsage: ExternalApiUsage;
mode: Mode;
}) {