Skip to content

Commit

Permalink
Fixes for sass-lang.com mixed-decl changes
Browse files Browse the repository at this point in the history
  • Loading branch information
NotChristianGarcia committed Jul 16, 2024
1 parent ad7660f commit 59a3833
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 57 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@
}

.nav-list {
table {
height: 350px;
max-height: 350px;
}

height: 372px;
width: 100%;
border: 1px solid gray;
margin-top: 0.25em;
box-sizing: border-box;


table {
height: 350px;
max-height: 350px;
}
}
45 changes: 1 addition & 44 deletions lib/tapisui-hooks/src/pods/useGetPodSecrets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,47 +21,4 @@ const useGetPodSecrets = (
return result;
};

export default useGetPodSecrets;

// type GetPodSecretsHookParams = {
// podId: string;
// };

// const useGetPodSecrets = () => {
// const { basePath, accessToken } = useTapisConfig();
// const jwt = accessToken?.access_token || '';

// // The useMutation react-query hook is used to call operations that make server-side changes
// // (Other hooks would be used for data retrieval)
// //
// // In this case, mkdir helper is called to perform the operation
// const { mutate, isLoading, isError, isSuccess, data, error, reset } =
// useMutation<Pods.PodCredentialsResponse, Error, GetPodSecretsHookParams>(
// [QueryKeys.getPodCredentials, basePath, jwt],
// ({ podId }) => API.getPodCredentials(podId, basePath, jwt)
// );

// // Return hook object with loading states and login function
// return {
// isLoading,
// isError,
// isSuccess,
// data,
// error,
// reset,
// getPodSecrets: (
// podId: string,
// // react-query options to allow callbacks such as onSuccess
// options?: MutateOptions<
// Pods.PodCredentialsResponse,
// Error,
// GetPodSecretsHookParams
// >
// ) => {
// // Call mutate to trigger a single post-like API operation
// return mutate({ podId }, options);
// },
// };
// };

// export default useGetPodSecrets;
export default useGetPodSecrets;
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
}

.nav-list {
table {
height: 350px;
max-height: 350px;
}
height: 372px;
width: 100%;
border: 1px solid gray;
margin-top: 0.25em;
box-sizing: border-box;
table {
height: 350px;
max-height: 350px;
}
}

.remove-file {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,23 @@
}

.nav-list {
table {
height: 350px;
max-height: 350px;
}
height: 372px;
width: 100%;
border: 1px solid gray;
margin-top: 0.25em;
box-sizing: border-box;
table {
height: 350px;
max-height: 350px;
}
}

.transfer-list {
height: 516px;
table {
height: 492px;
max-height: 492px;
}
height: 516px;
}

.body {
Expand Down

0 comments on commit 59a3833

Please sign in to comment.