JSFiddle - React, Tailwind, and code Playground

HTML

<input id="txt" name="teste" type="text" value="123456" />

JavaScript

$('#txt').on('keydown', function(e){
    if(e.keyCode == 8 && $('#txt').val().length == 6){
        e.preventDefault();
    }
 });