Am I missing something here? Nobody else seems to have a breakable tcolorbox that center aligns on the second page. I'd like it to just top align, same as normal text
\documentclass[11pt,twoside]{report}
\usepackage[breakable,skins]{tcolorbox}
\usepackage{lipsum}
\usepackage[parfill]{parskip}
\newtcolorbox[auto counter,number within=chapter]{pabox}[2][!ht]{colbacktitle=black!70!white, colback=black!2!white, floatplacement=#1, float, enhanced jigsaw, breakable, height fill, fonttitle=\bfseries, parbox=false, toptitle=2mm, bottomtitle=2mm, title=Box.~\thetcbcounter: #2} %removed possibility of specifying other options, just position
\begin{document}
\begin{pabox}[t!]{Extremely annoying tcolorbox}\label{box:accuracy}
\lipsum[1-4]
\end{pabox}
\end{document}

