diff --git a/agenda/types.py b/agenda/types.py
index 92ea0a5..d86ae3d 100644
--- a/agenda/types.py
+++ b/agenda/types.py
@@ -177,7 +177,8 @@ class Trip:
                 assert country
                 items.append(country)
 
-        return items
+        # Don't include GB in countries visited unless entire trip was GB based
+        return [c for c in items if c.alpha_2 != "GB"] or items
 
     @property
     def countries_str(self) -> str: