refactor(frontend): replace legacy action files with TypeScript equivalents

This commit is contained in:
Yiannis
2026-03-11 02:06:59 +02:00
parent e9af15582f
commit 7a5fca6fd8
21 changed files with 173 additions and 243 deletions

View File

@@ -0,0 +1,9 @@
import { dispatcher } from '../dispatcher';
export function load_author_data() {
dispatcher.dispatch({ type: 'LOAD_AUTHOR_DATA' });
}
export function remove_profile() {
dispatcher.dispatch({ type: 'REMOVE_PROFILE' });
}