mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-26 06:18:04 +00:00
Added bracketSpacing into prettier (#627)
This commit is contained in:
@@ -44,7 +44,13 @@ export const useDiffData = ({
|
||||
chart: string;
|
||||
}) => {
|
||||
return useQuery({
|
||||
queryKey: [selectedRepo, versionsError, chart, currentVerManifest, selectedVerData],
|
||||
queryKey: [
|
||||
selectedRepo,
|
||||
versionsError,
|
||||
chart,
|
||||
currentVerManifest,
|
||||
selectedVerData,
|
||||
],
|
||||
queryFn: async () => {
|
||||
const formData = new FormData();
|
||||
formData.append("a", currentVerManifest);
|
||||
@@ -58,6 +64,5 @@ export const useDiffData = ({
|
||||
return diff;
|
||||
},
|
||||
enabled: Boolean(selectedVerData),
|
||||
}
|
||||
);
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user