diff --git a/src/gui/src/UI/UIWindow.js b/src/gui/src/UI/UIWindow.js index 9e2d4dec2..2889b9557 100644 --- a/src/gui/src/UI/UIWindow.js +++ b/src/gui/src/UI/UIWindow.js @@ -344,31 +344,6 @@ async function UIWindow(options) { // Detail layout header h += window.explore_table_headers(); - // Maybe render iframe for users public directory - (() => { - if ( options.is_saveFileDialog || options.is_openFileDialog || options.is_directoryPicker ) { - return false; - } - - if ( ! options.path || ! options.path.startsWith('/') ) { // sus - return false; - } - - const components = options.path.slice(1).split('/'); - - if ( components.length === 2 && components[1] === 'Public' ) { - const username = components[0]; - h += ` - `; - } - })(); - // Add 'This folder is empty' message by default h += `
`;