Skip to content

Commit ee54496

Browse files
committed
fix lint
1 parent 8122612 commit ee54496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/utils/tcp-flags.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ export const tcpFlagsList = [
1616
{ name: 'RST_ACK', description: 'Acknowledgement of RST (custom flag)' }
1717
] as const;
1818

19-
export const getFlagsList = (names: string[]): { name: string, description: string}[] => {
19+
export const getFlagsList = (names: string[]): { name: string; description: string }[] => {
2020
return tcpFlagsList.filter(f => names.includes(f.name));
2121
};

0 commit comments

Comments
 (0)