28 lines
770 B
Plaintext
28 lines
770 B
Plaintext
---
|
|
title: Erase Confirmation
|
|
description: Confirming the formatting of the USB drive.
|
|
---
|
|
|
|
import { Picture } from "astro:assets";
|
|
import ChoiceList from "@/components/ChoiceList.astro";
|
|
import eraseConfirmation from "@/assets/imgs/Fedora/FedoraMediaWriter/EraseConfirmation.png";
|
|
|
|
<div class="flex justify-center">
|
|
<Picture
|
|
src={eraseConfirmation}
|
|
formats={["avif"]}
|
|
alt="Fedora Media Writer's Erase Confirmation dialog"
|
|
class="h-48 w-auto"
|
|
/>
|
|
</div>
|
|
|
|
**The entire device that you have selected will be wiped.** Click "Write" if
|
|
you have absolutely made sure that the selected device does not have important
|
|
data on it. This action is **irreversible.**
|
|
|
|
<ChoiceList>
|
|
<a href="/en/distro/fedora/workstation/4/" class="button">
|
|
Continue
|
|
</a>
|
|
</ChoiceList>
|