Skip to content

Commit

Permalink
Fixed formatting (deephaven#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Apr 19, 2024
1 parent 1a3a7ac commit 4a313ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/ui/src/js/src/elements/ElementUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type ObjectNode = {
*/
export type ElementNode<
K extends string = string,
P extends Record<string, unknown> = Record<string, unknown>
P extends Record<string, unknown> = Record<string, unknown>,
> = {
/**
* The type of this element. Can be something like `deephaven.ui.components.Panel`, or
Expand All @@ -37,7 +37,7 @@ export type ElementNode<

export type ElementNodeWithChildren<
K extends string = string,
P extends Record<string, unknown> = Record<string, unknown>
P extends Record<string, unknown> = Record<string, unknown>,
> = ElementNode<K, P> & {
props: React.PropsWithChildren<P>;
};
Expand Down

0 comments on commit 4a313ca

Please sign in to comment.