chore: fix linting errors
This commit is contained in:
@@ -18,8 +18,6 @@ import {SegmentService} from '../services/SegmentService.js';
|
|||||||
* - For segments without trackMembership: only update counts
|
* - For segments without trackMembership: only update counts
|
||||||
*/
|
*/
|
||||||
async function processProjectSegments(projectId: string, projectName?: string): Promise<void> {
|
async function processProjectSegments(projectId: string, projectName?: string): Promise<void> {
|
||||||
const logPrefix = projectName ? `${projectName} (${projectId})` : projectId;
|
|
||||||
|
|
||||||
// Get all segments for this project, separating tracked vs non-tracked
|
// Get all segments for this project, separating tracked vs non-tracked
|
||||||
const segments = await prisma.segment.findMany({
|
const segments = await prisma.segment.findMany({
|
||||||
where: {projectId},
|
where: {projectId},
|
||||||
|
|||||||
@@ -1584,7 +1584,7 @@ function AddStepDialog({open, onOpenChange, workflowId, onSuccess}: AddStepDialo
|
|||||||
</Select>
|
</Select>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-xs text-neutral-500 mt-1.5">
|
<p className="text-xs text-neutral-500 mt-1.5">
|
||||||
Continue the workflow after this time even if the event hasn't occurred
|
Continue the workflow after this time even if the event hasn't occurred
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -1676,7 +1676,7 @@ function AddStepDialog({open, onOpenChange, workflowId, onSuccess}: AddStepDialo
|
|||||||
rows={4}
|
rows={4}
|
||||||
/>
|
/>
|
||||||
<p className="text-xs text-neutral-500 mt-1.5">
|
<p className="text-xs text-neutral-500 mt-1.5">
|
||||||
JSON object with fields to update in the contact's data
|
JSON object with fields to update in the contact's data
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user