diff --git a/frontend/libs/console/legacy-ce/src/lib/features/Data/LogicalModels/AddNativeQuery/AddNativeQuery.stories.tsx b/frontend/libs/console/legacy-ce/src/lib/features/Data/LogicalModels/AddNativeQuery/AddNativeQuery.stories.tsx
index c4750f0409620..8e38e42d95e45 100644
--- a/frontend/libs/console/legacy-ce/src/lib/features/Data/LogicalModels/AddNativeQuery/AddNativeQuery.stories.tsx
+++ b/frontend/libs/console/legacy-ce/src/lib/features/Data/LogicalModels/AddNativeQuery/AddNativeQuery.stories.tsx
@@ -54,11 +54,11 @@ const fillAndSubmitForm: Story['play'] = async (
//await userEvent.click(c.getAllByText('Remove')[0]);
await userEvent.type(
- c.getByPlaceholderText('Name that exposes this model in GraphQL API'),
+ c.getByPlaceholderText('Name that exposes this query in GraphQL API'),
'my_native_query'
);
await userEvent.type(
- c.getByPlaceholderText('A description of this logical model'),
+ c.getByPlaceholderText('A description of this native query'),
'a description'
);
diff --git a/frontend/libs/console/legacy-ce/src/lib/features/Data/LogicalModels/AddNativeQuery/components/NativeQueryDetailsForm.tsx b/frontend/libs/console/legacy-ce/src/lib/features/Data/LogicalModels/AddNativeQuery/components/NativeQueryDetailsForm.tsx
index 4538f9545f5de..cfc268ff8ae4a 100644
--- a/frontend/libs/console/legacy-ce/src/lib/features/Data/LogicalModels/AddNativeQuery/components/NativeQueryDetailsForm.tsx
+++ b/frontend/libs/console/legacy-ce/src/lib/features/Data/LogicalModels/AddNativeQuery/components/NativeQueryDetailsForm.tsx
@@ -64,13 +64,13 @@ export const NativeQueryFormFields = ({ sources }: { sources?: Source[] }) => {