Revert always root snapshot

Summary: this assumption doesnt hold true for android as the snapshot is of the decor view and app bounds include the status bar / bottom bar

Reviewed By: elboman

Differential Revision: D42035810

fbshipit-source-id: 177b5d086487a940e0bdbe20c2a001c420a08d69
This commit is contained in:
Luke De Feo
2022-12-14 08:41:23 -08:00
committed by Facebook GitHub Bot
parent 12c1fdf952
commit a4525790a2

View File

@@ -130,12 +130,9 @@ export function plugin(client: PluginClient<Events>) {
const seenNodes = new Set<Id>();
client.onMessage('subtreeUpdate', (event) => {
liveClientData = produce(liveClientData, (draft) => {
// FIXME: remove node id from snapshot as is always
// for the entire screen.
const nodeId = rootId.get();
if (event.snapshot && nodeId) {
if (event.snapshot) {
draft.snapshotInfo = {
nodeId,
nodeId: event.rootId,
base64Image: event.snapshot,
};
}