Fixed incorrect data
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Shahan Nedadahandeh 2023-01-26 22:21:37 -05:00
parent dd8a33fa41
commit 93d0a69d78
4 changed files with 44 additions and 10 deletions

View File

@ -883,6 +883,12 @@ export const A12 = [
]; ];
export const A12i = [ export const A12i = [
{
category: "CS145",
"1-4": 1,
"5-7": 10,
"8-10": 23,
},
{ {
category: "CS146", category: "CS146",
"1-4": 1, "1-4": 1,
@ -1068,7 +1074,7 @@ export const A14 = [
}, },
{ {
text: "Carmen Bruni", text: "Carmen Bruni",
value: 10, value: 11,
}, },
{ {
text: "Michael Wallace", text: "Michael Wallace",
@ -1076,7 +1082,7 @@ export const A14 = [
}, },
{ {
text: "Lesley Istead", text: "Lesley Istead",
value: 11, value: 10,
}, },
{ {
text: "Eric Blais", text: "Eric Blais",
@ -1478,7 +1484,7 @@ export const A19 = [
export const A19i = [ export const A19i = [
{ {
category: "0", category: "0",
value: 15, value: 56,
}, },
{ {
category: "1", category: "1",

View File

@ -10,17 +10,29 @@ export const C1 = [
]; ];
export const C2 = [ export const C2 = [
{
text: "Pacific NW USA",
value: 3,
},
{
text: "West Coast CAN",
value: 12,
},
{
text: "Remote",
value: 2,
},
{
text: "East Coast Canada",
value: 1,
},
{ {
text: "Toronto", text: "Toronto",
value: 32, value: 34,
}, },
{ {
text: "California", text: "California",
value: 26, value: 25,
},
{
text: "West CA",
value: 12,
}, },
{ {
text: "East USA", text: "East USA",
@ -30,6 +42,14 @@ export const C2 = [
text: "Waterloo", text: "Waterloo",
value: 9, value: 9,
}, },
{
text: "Chicago",
value: 1,
},
{
text: "Tokyo",
value: 1,
},
]; ];
export const C3 = [ export const C3 = [

View File

@ -199,7 +199,7 @@ export const D7 = [
}, },
{ {
text: "GTA / Toronto", text: "GTA / Toronto",
value: 1, value: 58,
}, },
{ {
text: "United Arab Emirates", text: "United Arab Emirates",

View File

@ -228,4 +228,12 @@ export const P8 = [
text: "Computer Networking", text: "Computer Networking",
value: 2, value: 2,
}, },
{
text: "Programming Languages",
value: 2,
},
{
text: "Compilers",
value: 1,
},
]; ];