-
-
{t('admin.apps.title')}
+
+
+
+
{t('admin.apps.title')}
+
+
+ {/* RemnaWave Toggle & Settings */}
+
+ {remnaWaveStatus?.enabled && (
+ <>
+
+ {useRemnaWave && (
+
+ )}
+ >
+ )}
+
+
+ {/* RemnaWave Info Banner */}
+ {useRemnaWave && (
+
+
+ {t('admin.apps.remnaWaveMode', 'Showing apps from RemnaWave panel. Changes here are read-only.')}
+
+ )}
+
{/* Platform Tabs */}
{PLATFORMS.map((platform) => (
@@ -490,16 +709,44 @@ export default function AdminApps() {
))}
- {/* Add App Button */}
-
-
-
+ {/* Action Buttons - Only show when not in RemnaWave mode */}
+ {!useRemnaWave && (
+
+
+
+
+
+
+
+
+ )}
{/* Apps List */}
{isLoading ? (
@@ -513,23 +760,25 @@ export default function AdminApps() {
key={app.id}
className="card flex items-center gap-4 p-4"
>
- {/* Reorder buttons */}
-
-
-
-
+ {/* Reorder buttons - Only show when not in RemnaWave mode */}
+ {!useRemnaWave && (
+
+
+
+
+ )}
{/* App Info */}
@@ -544,30 +793,32 @@ export default function AdminApps() {
{app.urlScheme}
- {/* Actions */}
-
-
-
-
-
+ {/* Actions - Only show when not in RemnaWave mode */}
+ {!useRemnaWave && (
+
+
+
+
+
+ )}