attempt fix
This commit is contained in:
parent
34613771e5
commit
e10fc6b8ec
|
@ -211,6 +211,7 @@ function changeProfile(ev: MouseEvent) {
|
|||
}
|
||||
|
||||
async function deleteProfile() {
|
||||
console.log(deckStore.state.profile)
|
||||
const { canceled } = await os.confirm({
|
||||
type: 'warning',
|
||||
text: i18n.t('deleteAreYouSure', { x: deckStore.state.profile }),
|
||||
|
@ -347,7 +348,8 @@ async function deleteProfile() {
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 10px;
|
||||
margin: -0.5rem;
|
||||
margin: -0.35rem;
|
||||
transform: scale(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -108,7 +108,7 @@ export async function getProfiles(): Promise<string[]> {
|
|||
});
|
||||
}
|
||||
|
||||
export async function deleteProfile(key: string): Promise<void> {
|
||||
export async function deleteProfile(key: string): Promise<any> {
|
||||
return await api("i/registry/remove", {
|
||||
scope: ["client", "deck", "profiles"],
|
||||
key: key,
|
||||
|
|
Loading…
Reference in New Issue