From 5f84d63a4b074da82632e78e390ceaa09a574be7 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 15 Aug 2022 14:43:02 +0100 Subject: [PATCH] style: revert indent change --- packages/nuxt/src/app/composables/asyncData.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nuxt/src/app/composables/asyncData.ts b/packages/nuxt/src/app/composables/asyncData.ts index a9acf7bc3fc3..5f1133de8f4e 100644 --- a/packages/nuxt/src/app/composables/asyncData.ts +++ b/packages/nuxt/src/app/composables/asyncData.ts @@ -8,8 +8,8 @@ export type PickFrom> = T extends Array ? T : T extends Record ? keyof T extends K[number] - ? T // Exact same keys as the target, skip Pick - : Pick + ? T // Exact same keys as the target, skip Pick + : Pick : T export type KeysOf = Array