console: improve error message for delete all inconsistent metadata

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9803
GitOrigin-RevId: bcfba0a229c48b388ebc991088854886b27eda37
This commit is contained in:
Vijay Prasanna 2023-07-07 22:23:28 +05:30 committed by hasura-bot
parent 8472732104
commit effbac0ffb

View File

@ -192,8 +192,7 @@ const MetadataStatus = ({ dispatch, metadata }) => {
};
const verifyAndDropAll = () => {
const confirmMessage =
'This will drop all the inconsistent objects in your metadata. This action is irreversible.';
const confirmMessage = `This will drop all the inconsistent objects in your metadata. This includes all inconsistent sources - databases, remote schemas, actions etc. and any Hasura features related to these objects. This action is irreversible.`;
const isOk = getConfirmation(confirmMessage);
const callback = () => setIsLoading(false);
if (isOk) {