mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-20 01:11:25 +00:00
Update prettier to latest. Remove tslint (#1641)
* Rev up prettier * Reformat * Remove deprecated tslint * Remove call to tslint and update package-lock.json
This commit is contained in:
@@ -11,7 +11,7 @@ export interface SelectedNodeState {
|
||||
isDataNodeSelected: (
|
||||
databaseId: string,
|
||||
collectionId?: string,
|
||||
subnodeKinds?: ViewModels.CollectionTabKind[]
|
||||
subnodeKinds?: ViewModels.CollectionTabKind[],
|
||||
) => boolean;
|
||||
isConnectedToContainer: () => boolean;
|
||||
isQueryCopilotCollectionSelected: () => boolean;
|
||||
@@ -31,7 +31,7 @@ export const useSelectedNode: UseStore<SelectedNodeState> = create((set, get) =>
|
||||
isDataNodeSelected: (
|
||||
databaseId: string,
|
||||
collectionId?: string,
|
||||
subnodeKinds?: ViewModels.CollectionTabKind[]
|
||||
subnodeKinds?: ViewModels.CollectionTabKind[],
|
||||
): boolean => {
|
||||
const selectedNode = get().selectedNode;
|
||||
if (!selectedNode) {
|
||||
|
||||
Reference in New Issue
Block a user