fix: fixes issue where files imported from another account could not be deleted (#2082)

This commit is contained in:
Mo
2022-12-02 10:13:25 -06:00
committed by GitHub
parent 635e2d9150
commit b5b6192b60
5 changed files with 39 additions and 7 deletions

View File

@@ -683,3 +683,7 @@ export function assert(value: unknown): asserts value {
export function useBoolean(value: boolean | undefined, defaultValue: boolean): boolean {
return value != undefined ? value : defaultValue
}
export function spaceSeparatedStrings(...strings: string[]): string {
return strings.join(' ')
}