Skip to content

Commit 1a115c9

Browse files
committed
chore: lint
1 parent e798916 commit 1a115c9

File tree

2 files changed

+2
-144
lines changed

2 files changed

+2
-144
lines changed

.github/workflows/web_docker_manual.yml

Lines changed: 0 additions & 144 deletions
This file was deleted.

src/components/app/share/PeopleWithAccess.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,14 @@ export function PeopleWithAccess({ viewId, people, onPeopleChange, isLoading }:
4747
// Set up listener for outline refresh BEFORE async operations
4848
// This ensures we don't miss the OUTLINE_LOADED event if it fires quickly
4949
let outlineRefreshPromise: Promise<void> | null = null;
50+
5051
if (shouldNavigate && eventEmitter) {
5152
outlineRefreshPromise = new Promise<void>((resolve) => {
5253
const handleOutlineLoaded = () => {
5354
eventEmitter.off(APP_EVENTS.OUTLINE_LOADED, handleOutlineLoaded);
5455
resolve();
5556
};
57+
5658
eventEmitter.on(APP_EVENTS.OUTLINE_LOADED, handleOutlineLoaded);
5759

5860
// Timeout after 5 seconds to prevent infinite waiting

0 commit comments

Comments
 (0)