Skip to content

Commit 4a313ca

Browse files
committed
Fixed formatting (#366)
1 parent 1a3a7ac commit 4a313ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/ui/src/js/src/elements/ElementUtils.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export type ObjectNode = {
2525
*/
2626
export type ElementNode<
2727
K extends string = string,
28-
P extends Record<string, unknown> = Record<string, unknown>
28+
P extends Record<string, unknown> = Record<string, unknown>,
2929
> = {
3030
/**
3131
* The type of this element. Can be something like `deephaven.ui.components.Panel`, or
@@ -37,7 +37,7 @@ export type ElementNode<
3737

3838
export type ElementNodeWithChildren<
3939
K extends string = string,
40-
P extends Record<string, unknown> = Record<string, unknown>
40+
P extends Record<string, unknown> = Record<string, unknown>,
4141
> = ElementNode<K, P> & {
4242
props: React.PropsWithChildren<P>;
4343
};

0 commit comments

Comments
 (0)