Skip to content

Commit d49ae61

Browse files
Fix useTree merge (#25879)
## Description Some concurrent changes broke the build, here is a fix,
1 parent e5be416 commit d49ae61

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/data-objects/table-tree/src/react/tableHeaderView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import {
1414
} from "@fluentui/react-components";
1515
import { Add24Regular, Checkmark24Regular, Delete24Regular } from "@fluentui/react-icons";
1616
import React, { type DragEvent, useState } from "react";
17+
import { useTree } from "@fluidframework/react/alpha";
1718

1819
import { Column, type Table } from "../schema.js";
19-
import { useTree } from "./utilities.js";
2020

2121
/**
2222
* Props for the `TableHeaderView` component, which renders the header row of the table.

examples/data-objects/table-tree/src/react/tableRowView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
import { TableRow, TableCell, Input, Button, Checkbox } from "@fluentui/react-components";
77
import { Delete24Regular } from "@fluentui/react-icons";
88
import React, { type DragEvent } from "react";
9+
import { useTree } from "@fluidframework/react/alpha";
910

1011
import type { Table } from "../schema.js";
11-
import { useTree } from "./utilities.js";
1212

1313
/**
1414
* Props for the `TableRowView` component, which renders a single row in the table.

0 commit comments

Comments
 (0)