Remove the you saved text for admin order page
Remove "You Saved" text from admin order pages.
add_action('admin_footer', function() {
?>
<style>
.wc-orders-list-table span .awdr-you-saved-text {
display: none !important;
}
</style>
<?php
});