Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ dist/*
node_modules/
node_modules/*

.DS_Store
.DS_Store

CLAUDE.md
7 changes: 0 additions & 7 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,6 @@
{
"assets": [{ "path": "dist.zip", "label": "Frontend Distribution" }]
}
],
[
"@semantic-release/git",
{
"assets": ["CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version}"
}
]
]
}
5 changes: 1 addition & 4 deletions src/components/CreateBackupModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { useEffect, useState } from "react";
import { BarLoader } from "react-spinners";
import { api, type Index } from "../api/client";
import { useAuth } from "../context/AuthContext";
import { useNotification } from "../context/NotificationContext";
import { useNavigate } from "react-router";
import Notification from "./Notification";

Expand All @@ -23,7 +22,6 @@ export default function CreateBackupModal(params: CreateBackupParams) {
const [loadingIndexes, setLoadingIndexes] = useState(false)

const { token, handleUnauthorized } = useAuth();
const { showNotification } = useNotification();
const navigate = useNavigate();

useEffect(() => {
Expand Down Expand Up @@ -75,8 +73,7 @@ export default function CreateBackupModal(params: CreateBackupParams) {
}

params.closeBackupModal()
showNotification('info', `Backup "${backupName.trim()}" getting created for index "${backupIndexName}"`)
navigate("/backups#jobs")
navigate("/backups")
} catch (err) {
setBackupError(err instanceof Error ? err.message : 'Failed to create backup')
} finally {
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const APP_VERSION = "0.1.0"
export const APP_VERSION = "beta"
Loading