Hide timestamps from *org-roam* buffer

I followed this tip to have timestamps (of the inbuilt in emacs type) auto-inserted and updated on my notes.

However, now the time stamps (e.g. Time-stamp: “2024-04-26 22:47:41”) are included on the *org-roam* buffer, along with the rest of the note.

Is it somehow possible to hide them?

I think I might have a workaround, which is to comment out timestamps, e.g.:

(setq org-roam-capture-templates
	'(("d" "default" plain "%?" :target
	   (file+head "%<%Y%m%d%H%M%S>-${slug}.org"
		          "#+title: ${title}\n# Time-stamp: <>\n")
	   :unnarrowed t)))