Skip to content

Commit c68753c

Browse files
committed
feat: useCache use false by default
1 parent c89d812 commit c68753c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/clack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function useCancel(field: FieldType, info?: string): void {
1313
export async function useCache(): Promise<boolean> {
1414
const cache = await confirm({
1515
message: 'Use cache?',
16-
initialValue: true,
16+
initialValue: false,
1717
}) as boolean
1818
return cache
1919
}

0 commit comments

Comments
 (0)