From 4a628e8dbf6a2cbd871435132545a6f41d107db5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Mar 2026 15:34:20 +0000 Subject: [PATCH 1/6] Initial plan From 14370235eb7c63d6d1cb3432c7c3dab8b69a68ff Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Mar 2026 15:42:43 +0000 Subject: [PATCH 2/6] feat: add centered loading spinner to ContactNotLoaded component Co-authored-by: stephenhand <1694716+stephenhand@users.noreply.github.com> --- .../src/components/ContactNotLoaded.tsx | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/plugin-hrm-form/src/components/ContactNotLoaded.tsx b/plugin-hrm-form/src/components/ContactNotLoaded.tsx index 29f38e203b..37628f1849 100644 --- a/plugin-hrm-form/src/components/ContactNotLoaded.tsx +++ b/plugin-hrm-form/src/components/ContactNotLoaded.tsx @@ -15,7 +15,7 @@ */ import React from 'react'; -import { Box } from '@material-ui/core'; +import { Box, CircularProgress } from '@material-ui/core'; import { Template } from '@twilio/flex-ui'; import FormNotEditable from './FormNotEditable'; @@ -33,7 +33,22 @@ const ContactNotLoaded: React.FC = ({ onReload, onFinish }: Props) => { const [reloadDisabled, setReloadDisabled] = React.useState(false); const [finishDisabled, setFinishDisabled] = React.useState(false); return ( - + + + +