diff --git a/packages/manager/.changeset/pr-9667-fixed-1694576063628.md b/packages/manager/.changeset/pr-9667-fixed-1694576063628.md
new file mode 100644
index 00000000000..59e2af0231b
--- /dev/null
+++ b/packages/manager/.changeset/pr-9667-fixed-1694576063628.md
@@ -0,0 +1,5 @@
+---
+"@linode/manager": Fixed
+---
+
+Billing Contact UI Regression caused by MUI Update ([#9667](https://github.com/linode/manager/pull/9667))
diff --git a/packages/manager/src/features/Billing/BillingPanels/ContactInfoPanel/ContactInformation.tsx b/packages/manager/src/features/Billing/BillingPanels/ContactInfoPanel/ContactInformation.tsx
index aaf755c2688..70231af22ce 100644
--- a/packages/manager/src/features/Billing/BillingPanels/ContactInfoPanel/ContactInformation.tsx
+++ b/packages/manager/src/features/Billing/BillingPanels/ContactInfoPanel/ContactInformation.tsx
@@ -1,4 +1,3 @@
-import { Box } from 'src/components/Box';
import Grid from '@mui/material/Unstable_Grid2';
import { styled } from '@mui/material/styles';
import countryData from 'country-region-data';
@@ -104,7 +103,7 @@ const ContactInformation = (props: Props) => {
(_country) => _country.countryShortCode === country
)?.countryName;
- const sxBox = {
+ const sxGrid = {
flex: 1,
maxWidth: '100%',
position: 'relative',
@@ -140,7 +139,7 @@ const ContactInformation = (props: Props) => {
state ||
zip ||
country) && (
-
+
{(firstName || lastName) && (
{
{city && state && ','} {state} {zip}
{countryName}
-
+
)}
-
-
+
{
Tax ID {taxId}
)}
-
+