mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
feat(frontend): Add sentry-unmask to additional static content
- Added sentry-unmask to login/signup page button text - Added sentry-unmask to signup agreement text - Added sentry-unmask to empty agent runs messages - Ensured no PII is exposed in unmasked content 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Nicholas Tindle <ntindle@users.noreply.github.com> Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -49,15 +49,17 @@ export function EmptyAgentRuns({
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col gap-4">
|
||||
<Text variant="h4">You don’t have any runs</Text>
|
||||
<Text variant="large">
|
||||
Get started with creating a run, and you’ll see information here
|
||||
<Text variant="h4" className="sentry-unmask">
|
||||
You don't have any runs
|
||||
</Text>
|
||||
<Text variant="large" className="sentry-unmask">
|
||||
Get started with creating a run, and you'll see information here
|
||||
</Text>
|
||||
</div>
|
||||
<RunAgentModal
|
||||
triggerSlot={
|
||||
<Button variant="primary" size="large" className="w-full">
|
||||
<PlusIcon size={20} /> New Run
|
||||
<PlusIcon size={20} /> <span className="sentry-unmask">New Run</span>
|
||||
</Button>
|
||||
}
|
||||
agent={agent}
|
||||
|
||||
@@ -104,7 +104,9 @@ export default function LoginPage() {
|
||||
type="submit"
|
||||
className="mt-6 w-full"
|
||||
>
|
||||
{isLoading ? "Logging in..." : "Login"}
|
||||
<span className="sentry-unmask">
|
||||
{isLoading ? "Logging in..." : "Login"}
|
||||
</span>
|
||||
</Button>
|
||||
</form>
|
||||
{isCloudEnv ? (
|
||||
|
||||
@@ -124,7 +124,7 @@ export default function SignupPage() {
|
||||
<FormLabel className="flex flex-wrap items-center gap-1">
|
||||
<Text
|
||||
variant="body-medium"
|
||||
className="inline-block text-slate-950"
|
||||
className="sentry-unmask inline-block text-slate-950"
|
||||
>
|
||||
I agree to the
|
||||
</Text>
|
||||
@@ -136,7 +136,7 @@ export default function SignupPage() {
|
||||
</Link>
|
||||
<Text
|
||||
variant="body-medium"
|
||||
className="inline-block text-slate-950"
|
||||
className="sentry-unmask inline-block text-slate-950"
|
||||
>
|
||||
and
|
||||
</Text>
|
||||
@@ -181,7 +181,9 @@ export default function SignupPage() {
|
||||
type="submit"
|
||||
className="mt-6 w-full"
|
||||
>
|
||||
{isLoading ? "Signing up..." : "Sign up"}
|
||||
<span className="sentry-unmask">
|
||||
{isLoading ? "Signing up..." : "Sign up"}
|
||||
</span>
|
||||
</Button>
|
||||
</form>
|
||||
</Form>
|
||||
|
||||
Reference in New Issue
Block a user