Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Jan 30, 2024
1 parent 56b7881 commit 3364503
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/tapis-hooks/systems/useMakeNewSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const useMakeNewSystem = () => {
useMutation<Systems.RespBasic, Error, MkNewSystemHookParams>(
[QueryKeys.makeNewSystem, basePath, jwt],
({ reqPostSystem, skipCredentialCheck }) =>
makeNewSystem({reqPostSystem, skipCredentialCheck}, basePath, jwt)
makeNewSystem({ reqPostSystem, skipCredentialCheck }, basePath, jwt)
);

// Return hook object with loading states and login function
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,7 @@ const SchedulerProfiles: React.FC = () => {
<div className={fieldArrayStyles.array}>
<h3>Scheduler Profiles</h3>
{schedulerProfiles.map(
({
name,
description,
hiddenOptions,
moduleLoads,
owner,
tenant,
}) => (
({ name, description, hiddenOptions, moduleLoads, owner, tenant }) => (
<Collapse
key={`scheduler-profiles-${name}`}
className={fieldArrayStyles['array-group']}
Expand Down

0 comments on commit 3364503

Please sign in to comment.