diff --git a/apps/govern/components/Contracts/EditVotes/index.spec.tsx b/apps/govern/components/Contracts/EditVotes/index.spec.tsx
index 10e46f26..be557ba1 100644
--- a/apps/govern/components/Contracts/EditVotes/index.spec.tsx
+++ b/apps/govern/components/Contracts/EditVotes/index.spec.tsx
@@ -88,9 +88,10 @@ describe('', () => {
expect(screen.getByText('My voting weight')).toBeInTheDocument();
expect(
- screen.getByText(/Updated voting weights will take effect at the start of/),
+ screen.getByText(
+ /Updated voting weights will take effect at the start of next week (according to Unix time)./,
+ ),
).toBeInTheDocument();
- expect(screen.getByText(/next Unix time week./)).toBeInTheDocument();
});
describe('Voting contract row', () => {
diff --git a/apps/govern/components/Contracts/EditVotes/index.tsx b/apps/govern/components/Contracts/EditVotes/index.tsx
index 2789bcb2..a1361dc3 100644
--- a/apps/govern/components/Contracts/EditVotes/index.tsx
+++ b/apps/govern/components/Contracts/EditVotes/index.tsx
@@ -219,8 +219,7 @@ export const EditVotes = ({ allocations, setAllocations, setIsUpdating }: EditVo
/>
- Updated voting weights will take effect at the start of
- next Unix time week.
+ Updated voting weights will take effect at the start of next week (according to Unix time).