Skip to content

Commit 4172112

Browse files
committed
fix format
1 parent b677d23 commit 4172112

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/server/src/utils/message.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,7 @@ export class ServerMessage {
8282
}
8383

8484
isFilePart(part: UIMessagePart): part is FilePart {
85-
return (
86-
part.type === FILE_PART_TYPE && this.hasFields(part, ['data'])
87-
)
85+
return part.type === FILE_PART_TYPE && this.hasFields(part, ['data'])
8886
}
8987

9088
isArtifactPart(part: UIMessagePart): part is ArtifactPart {

0 commit comments

Comments
 (0)