How to hide DONE LATER NOW texts from task?

Is it possible that I can only see a square instead of square and TODO or NOW LATER text when I create a todo?

image
to
image

I found it

.block-marker {
  display: none;
}

or below if upper one doesn’t work

.block-marker {
  display: none !important;
}
1 Like