- rename more files to .ts/.tsx - update tailwind config to use .tsx files from all dirs - merge css files into a single main.css to avoid import order dependencies - minor cleanups due to ts complaints
13 lines
299 B
JavaScript
13 lines
299 B
JavaScript
import {
|
|
databaseReadWithReadCredentials,
|
|
databaseUpsert,
|
|
} from "../../database/database-wrapper";
|
|
|
|
export async function updateHistory() {
|
|
let latest = await databaseReadWithReadCredentials({ group: "combined" });
|
|
await databaseUpsert({
|
|
contents: latest,
|
|
group: "history",
|
|
});
|
|
}
|