feat: add refresh message to no miis found message

This commit is contained in:
trafficlunar 2026-06-22 22:01:48 +01:00
parent f2807aedf8
commit b15b42b04d

View file

@ -158,7 +158,10 @@ export default function MiiList({ parentPage, userId, bypassCache }: Props) {
<Pagination lastPage={data.lastPage} /> <Pagination lastPage={data.lastPage} />
</div> </div>
) : ( ) : (
<p>No Miis found, has the server died?</p> <>
<p className="text-2xl text-center">No Miis found, has the server died?</p>
<p className="text-center font-bold text-lg">Please try refreshing first!</p>
</>
)} )}
</> </>
); );