To disable the notification message on the order success page.
On the Success.phtml file add these script
<script>
require(['jquery', 'jquery/jquery-storageapi'], function($) {
$.cookieStorage.set('mage-messages', '');
});
</script>
Thank you.