I'm using a list with \itemize as follows:
\begin{itemize}
\item SuperTopic 1
\begin{itemize}
\only<2->{\item SubTopic 1}
\only<3->{\item SubTopic 2}
\end{itemize}
\item SuperTopic 2
\end{itemize}
This produces an error saying that I do have an empty list (the 2nd level itemize), although visually works fine.
I'm not using \item<2-> because I don't want to occupy that space in the first slide.
Is there a way to prevent the error?

\item<2-> Subtopic 1instead of\only<2->{\item SubTopic 1}? – gusbrs Dec 02 '18 at 23:21Because I don't want to visually put a blank line if there is not item yet, the \item<2-> puts a blank line in the first slide and fills it in the second. The \only command do what I want.
– Migdress Dec 02 '18 at 23:25