What is wrong?
So, this is how I solved
$T(n-1) \approx{} T(n-2)$
$T(n) = T(n-1)^2$
An equality is the most precise and most powerful entity in the world. Please treat it with due respect.
Let me show how wrong it is if you use approximation liberally with equalities. If your argument above is sound, we can also do the following.
$\quad T(n) \approx{} T(n-1)$
$\quad T(n-1) = T(n-1)*T(n-2)$
$\quad T(n-2) = 1$ if $T(n-1)$ is not 0.
So $T(n)$ must be 0 or 1 from time to time . That is obviously false, however. For example, we can let $T(1)=T(2)=2$.
What to do?
What you can do is, as gnasher729 suggested, "taking logarithm on both sides immediately", assuming $T(1)>0$ and $T(2)>0$, which can be assume generally when we are analyzing recurrence relations in computer science.
You can also, of course, dive into analysis by cases when $T(1)$ and $T(2)$ might be 0 or even negative.