mirror of
https://github.com/documenso/documenso.git
synced 2026-07-13 06:25:01 +10:00
138d663c25
Merge origin/main into feat/external-2fa-codes. Resolve formatting conflicts caused by biome rollout; preserve both feature streams: PR's external 2FA token + signing-session 2FA proof additions plus main's RateLimit/RecipientExpired/signingReminders/date-auto-insert. In complete-document-with-token.ts, drop the duplicate early field-fetching block introduced when main moved that logic later with date auto-insert support; keep the EXTERNAL_TWO_FACTOR_AUTH check using derivedRecipientActionAuth.
15 lines
385 B
TypeScript
15 lines
385 B
TypeScript
import { Trans } from '@lingui/react/macro';
|
|
import { Loader } from 'lucide-react';
|
|
|
|
export const EmbedClientLoading = () => {
|
|
return (
|
|
<div className="fixed top-0 left-0 z-[9999] flex h-full w-full items-center justify-center bg-background">
|
|
<Loader className="mr-2 h-4 w-4 animate-spin" />
|
|
|
|
<span>
|
|
<Trans>Loading...</Trans>
|
|
</span>
|
|
</div>
|
|
);
|
|
};
|