fix formatting

This commit is contained in:
Jade (Rose) Rowland 2025-09-07 22:43:13 -04:00
parent a968545458
commit 66aad0004a

View file

@ -79,8 +79,10 @@ export function SoundsTab() {
}} }}
></ButtonGroup> ></ButtonGroup>
</div> </div>
<div>
{soundsFilter === soundFilterType.USER && soundEntries.length > 0 && ( {soundsFilter === soundFilterType.USER && soundEntries.length > 0 && (
<ActionButton <ActionButton
className="pl-2"
label="delete-all" label="delete-all"
onClick={async () => { onClick={async () => {
try { try {
@ -96,6 +98,7 @@ export function SoundsTab() {
}} }}
/> />
)} )}
</div>
<div className="min-h-0 max-h-full grow overflow-auto text-sm break-normal bg-background p-2 rounded-md"> <div className="min-h-0 max-h-full grow overflow-auto text-sm break-normal bg-background p-2 rounded-md">
{soundEntries.map(([name, { data, onTrigger }]) => { {soundEntries.map(([name, { data, onTrigger }]) => {