Skip to content

Commit e1dae17

Browse files
committed
fix: placeholfers
1 parent c8a36de commit e1dae17

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

apps/api/src/app/topics-v2/topics.controller.ts

-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,6 @@ export class TopicsController {
239239
@Param('topicKey') topicKey: string,
240240
@Body() body: CreateTopicSubscriptionsRequestDto
241241
): Promise<CreateTopicSubscriptionsResponseDto> {
242-
// Execute the use case to create topic subscriptions
243242
const result = await this.createTopicSubscriptionsUsecase.execute(
244243
CreateTopicSubscriptionsCommand.create({
245244
environmentId: user.environmentId,

apps/dashboard/src/components/activity/activity-filters.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export function ActivityFilters({
122122
title="Transaction ID"
123123
value={filters.transactionId}
124124
onChange={(value) => onFiltersChange({ ...filters, transactionId: value })}
125-
placeholder="Search by Transaction ID"
125+
placeholder="Search by full Transaction ID"
126126
/>
127127
)}
128128

@@ -133,7 +133,7 @@ export function ActivityFilters({
133133
title="Subscriber ID"
134134
value={filters.subscriberId}
135135
onChange={(value) => onFiltersChange({ ...filters, subscriberId: value })}
136-
placeholder="Search by Subscriber ID"
136+
placeholder="Search by full Subscriber ID"
137137
/>
138138
)}
139139

@@ -144,7 +144,7 @@ export function ActivityFilters({
144144
title="Topic Key"
145145
value={filters.topicKey}
146146
onChange={(value) => onFiltersChange({ ...filters, topicKey: value })}
147-
placeholder="Search by Topic Key"
147+
placeholder="Search by full Topic Key"
148148
/>
149149
)}
150150

0 commit comments

Comments
 (0)