Sort table by user email

Hello Alex,

Try turning your email to a string before you compare it in the filter function like so:

.eq("email", email.toString())  

This will fix the type mismatch if there is any. Put this in your initial code that you posted the first time.