To remove the hand pointer after closing the browser, you can call this custom function
void UProjectBlueprintFunctionLibrary::SetTypeShape()
{
if (ICursor* Cursor = FSlateApplication::Get().GetPlatformCursor().Get())
{
Cursor->SetTypeShape(EMouseCursor::Custom, nullptr);
}
}