()
diff --git a/app/pages/project/vpcs/internet-gateway-edit.tsx b/app/pages/project/vpcs/internet-gateway-edit.tsx
index a93b10da2..7a3ad0c1c 100644
--- a/app/pages/project/vpcs/internet-gateway-edit.tsx
+++ b/app/pages/project/vpcs/internet-gateway-edit.tsx
@@ -164,10 +164,10 @@ export function EditInternetGatewayForm() {
))
) : (
- {'This internet gateway does not have any specific IP addresses attached. '}
+ {'This internet gateway does not have any IP addresses attached. '}
{hasAttachedPool
? 'It will use an address from the attached IP pool.'
- : 'Use the CLI to attach an IP Pool or specify an IP address to use with this gateway.'}
+ : 'Use the CLI to attach an IP pool or IP address to this gateway.'}
)}
diff --git a/test/e2e/vpcs.e2e.ts b/test/e2e/vpcs.e2e.ts
index ffa43dbfc..f2e9ef10e 100644
--- a/test/e2e/vpcs.e2e.ts
+++ b/test/e2e/vpcs.e2e.ts
@@ -335,12 +335,14 @@ test('can view internet gateways', async ({ page }) => {
description: 'internet gateway 1',
'Attached IP Address': '123.4.56.3',
'Attached IP Pool': 'ip-pool-1',
+ Routes: '1',
})
await expectRowVisible(table, {
name: 'internet-gateway-2',
description: 'internet gateway 2',
'Attached IP Address': '—',
'Attached IP Pool': 'ip-pool-2',
+ Routes: '—',
})
await page.getByRole('link', { name: 'internet-gateway-1' }).click()