Files
start-os/web/projects/shared/src/util/to-guid.ts
Alex Inkin 7b41b295b7 chore: refactor install and setup wizards (#2561)
* chore: refactor install and setup wizards

* chore: return tui-root
2024-02-22 06:58:01 -07:00

6 lines
178 B
TypeScript

import { DiskInfo } from '../types/api'
export function toGuid(disk: DiskInfo | null): string | null {
return disk?.guid || disk?.partitions.find(p => p.guid)?.guid || null
}