Skip to content

Commit c88cb83

Browse files
fix lint
1 parent 9d35b0f commit c88cb83

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

apps/sim/lib/copilot/chat/persisted-message.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,7 @@ function resolveToolState(block: ContentBlock): PersistedToolState {
9393
* metadata that drives the `Thought for Ns` chip survives the full
9494
* persist → normalize → display round-trip — and one rule lives in one place.
9595
*/
96-
export function withBlockTiming<T>(
97-
target: T,
98-
src: { timestamp?: number; endedAt?: number }
99-
): T {
96+
export function withBlockTiming<T>(target: T, src: { timestamp?: number; endedAt?: number }): T {
10097
const writable = target as { timestamp?: number; endedAt?: number }
10198
if (typeof src.timestamp === 'number') writable.timestamp = src.timestamp
10299
if (typeof src.endedAt === 'number') writable.endedAt = src.endedAt

0 commit comments

Comments
 (0)