Files
route96/ui_src
Copilot c4a519afb4
Some checks failed
continuous-integration/drone/push Build is failing
Add UI updates: admin reports button, quota display, and payment flow (#23)
* Initial plan for issue

* Implement UI updates: admin reports button, quota display, and payment flow

Co-authored-by: v0l <1172179+v0l@users.noreply.github.com>

* Final implementation complete - all UI updates successfully implemented

Co-authored-by: v0l <1172179+v0l@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: v0l <1172179+v0l@users.noreply.github.com>
2025-06-11 10:19:37 +01:00
..
2024-10-04 18:00:37 +01:00
2024-10-04 18:00:37 +01:00
2025-01-14 12:36:50 +00:00
2024-11-29 23:41:47 +00:00
2024-09-24 13:49:17 +01:00
2024-09-24 13:49:17 +01:00
2024-09-24 13:49:17 +01:00
2025-01-14 12:36:50 +00:00
2024-12-16 12:52:27 +00:00
2024-09-24 13:49:17 +01:00
2024-09-24 13:49:17 +01:00
2024-09-24 13:49:17 +01:00
2024-09-26 10:49:17 +01:00
2024-09-24 13:49:17 +01:00
2024-09-24 13:49:17 +01:00
2024-09-26 10:46:39 +01:00
2024-12-16 12:52:27 +00:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default tseslint.config({
  languageOptions: {
    // other options...
    parserOptions: {
      project: ["./tsconfig.node.json", "./tsconfig.app.json"],
      tsconfigRootDir: import.meta.dirname,
    },
  },
});
  • Replace tseslint.configs.recommended to tseslint.configs.recommendedTypeChecked or tseslint.configs.strictTypeChecked
  • Optionally add ...tseslint.configs.stylisticTypeChecked
  • Install eslint-plugin-react and update the config:
// eslint.config.js
import react from "eslint-plugin-react";

export default tseslint.config({
  // Set the react version
  settings: { react: { version: "18.3" } },
  plugins: {
    // Add the react plugin
    react,
  },
  rules: {
    // other rules...
    // Enable its recommended rules
    ...react.configs.recommended.rules,
    ...react.configs["jsx-runtime"].rules,
  },
});