cleanup uneccessary awaits in query store extension (#23701)

This commit is contained in:
Kim Santiago
2023-07-10 11:15:21 -10:00
committed by GitHub
parent 1bfeae6ee6
commit e6b4d2e634
2 changed files with 6 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ export async function createOneComponentFlexContainer(view: azdata.ModelView, co
* @param flexFlow row or column
* @returns Flex container containing the two components
*/
export async function createTwoComponentFlexContainer(view: azdata.ModelView, firstComponent: azdata.Component, secondComponent: azdata.Component, flexFlow: string): Promise<azdata.FlexContainer> {
export function createTwoComponentFlexContainer(view: azdata.ModelView, firstComponent: azdata.Component, secondComponent: azdata.Component, flexFlow: string): azdata.FlexContainer {
const flexContainer = view.modelBuilder.flexContainer().component();
if (flexFlow === 'row') {