Skip to content

Commit

Permalink
feat: grafico frequencia
Browse files Browse the repository at this point in the history
fix id_ts
  • Loading branch information
joannestephany committed Dec 20, 2024
1 parent 89b9fda commit eaaef31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Pages/InitialPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@ import { requestChartMatriculated } from "../../Services/Chart/request";
import { requestChartMeetingFrequency } from "../../Services/Chart/request";
import color from "../../Styles/colors";


export interface Chart {
year: number;
month: number;
n_registers: number;
n_approved: number;
}

export const socialTechnologyId = "1"; //teste //todo: pegar id da tecnologia social
const id_ts = "id-ts";
export const socialTechnologyId = localStorage.getItem(id_ts); //teste //todo: pegar id da tecnologia social

export interface ChartFrequency {
year: number;
Expand Down Expand Up @@ -171,8 +173,6 @@ const InitialPage = () => {

}

console.log("ts:", ts);


const updatedChartDataFrequency = {
labels: uniqueMonth,
Expand Down

0 comments on commit eaaef31

Please sign in to comment.