From 688f9e164e5075ba628b881d6debbea48a17db91 Mon Sep 17 00:00:00 2001 From: Jeff McMillen Date: Fri, 6 Dec 2024 15:42:31 -0600 Subject: [PATCH] Linted client-side code --- .../datafiles/useDataFilesAllocations.js | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/client/src/hooks/datafiles/useDataFilesAllocations.js b/client/src/hooks/datafiles/useDataFilesAllocations.js index e4a5af9cb..265c36538 100644 --- a/client/src/hooks/datafiles/useDataFilesAllocations.js +++ b/client/src/hooks/datafiles/useDataFilesAllocations.js @@ -1,30 +1,30 @@ const dataFilesAllocations = { - hosts: { - 'ls6.tacc.utexas.edu': ['TACC-ACI'], - 'data.tacc.utexas.edu': ['TACC-ACI'], - 'ranch.tacc.utexas.edu': ['TACC-ACI'], - 'stampede2.tacc.utexas.edu': ['TACC-ACI'], - 'maverick2.tacc.utexas.edu': ['TACC-ACI'], - 'frontera.tacc.utexas.edu': ['TACC-ACI'], - }, - portal_alloc: 'TACC-ACI', - active: [ + hosts: { + 'ls6.tacc.utexas.edu': ['TACC-ACI'], + 'data.tacc.utexas.edu': ['TACC-ACI'], + 'ranch.tacc.utexas.edu': ['TACC-ACI'], + 'stampede2.tacc.utexas.edu': ['TACC-ACI'], + 'maverick2.tacc.utexas.edu': ['TACC-ACI'], + 'frontera.tacc.utexas.edu': ['TACC-ACI'], + }, + portal_alloc: 'TACC-ACI', + active: [ + { + title: 'TACC-ACI', + projectId: 9192, + projectName: 'TACC-ACI', + systems: [ + { + name: 'ls6', + host: 'ls6.tacc.utexas.edu', + }, { - title: 'TACC-ACI', - projectId: 9192, - projectName: 'TACC-ACI', - systems: [ - { - name: 'ls6', - host: 'ls6.tacc.utexas.edu', - }, - { - name: 'frontera', - host: 'frontera.tacc.utexas.edu', - }, - ], + name: 'frontera', + host: 'frontera.tacc.utexas.edu', }, - ], + ], + }, + ], }; -export default dataFilesAllocations; \ No newline at end of file +export default dataFilesAllocations;