Skip to content

Commit

Permalink
fix(frontend): update wizard copy (#3650)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeepc committed Feb 15, 2024
1 parent 53aba3a commit 929398a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 2 additions & 4 deletions web/src/components/Wizard/Steps/TracingBackend/Selector.tsx
Expand Up @@ -14,11 +14,9 @@ interface IProps {
const Selector = ({onSelect, selectedBackend}: IProps) => {
return (
<S.Container>
<Typography.Title level={1}>How should Tracetest receive telemetry from your application?</Typography.Title>
<Typography.Title level={1}>Tell us how Tracetest should ingest traces from your application</Typography.Title>

<Typography.Paragraph type="secondary">
Tell us how Tracetest should get or receive traces from your application
</Typography.Paragraph>
<Typography.Paragraph type="secondary">Select your Tracing Backend</Typography.Paragraph>

<S.BackendSelector>
{backends.map(backend => (
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/Wizard/Wrapper/Wrapper.tsx
Expand Up @@ -6,7 +6,7 @@ import CreateTest, {CreateTestTab} from '../Steps/CreateTest';
const steps: TWizardMap = {
agent: undefined,
tracing_backend: {
name: 'Configure access to your OTel traces',
name: 'Configure trace ingestion',
description: '',
component: TracingBackend,
tabComponent: TracingBackendTab,
Expand Down
1 change: 1 addition & 0 deletions web/src/constants/Common.constants.ts
Expand Up @@ -42,6 +42,7 @@ export const POKESHOP_GITHUB = 'https://github.com/kubeshop/pokeshop';
export const OTEL_DEMO_GITHUB = 'https://github.com/open-telemetry/opentelemetry-demo';

export const AGENT_DOCS_URL = 'https://docs.tracetest.io/concepts/agent';
export const CLOUD_AGENT_DOCS_URL = 'https://docs.tracetest.io/concepts/cloud-agent';

export enum HTTP_METHOD {
GET = 'GET',
Expand Down

0 comments on commit 929398a

Please sign in to comment.