Skip to content

Commit fb2523b

Browse files
committed
fixes
1 parent 9a231c5 commit fb2523b

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

front_end/src/app/(main)/labor-hub/sections/methodology.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ export function MethodologySection({ ...props }: ComponentProps<"section">) {
583583
published literature. In the literature, these exposure or
584584
vulnerability ratings were generally created by judgmental
585585
assessments of the automatability of various tasks and mapping
586-
those tasks onto occupations classifications.
586+
those tasks onto occupational classifications.
587587
</p>
588588
<p>
589589
In the work presented on this dashboard, the vulnerability

front_end/src/app/(main)/labor-hub/sections/research.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export function ResearchSection({
205205
, estimating how much the typical tasks and abilities in each
206206
occupation overlap with what generative AI systems are good at. Data
207207
was based on 2010 SOC codes, which Metaculus has crosswalked to the
208-
2018 SOC. The paper presents both language modeling and imager
208+
2018 SOC. The paper presents both language modeling and image
209209
generation exposure scores, from which only language modeling scores
210210
are used here.
211211
</li>

front_end/src/components/charts/primitives/timeline_markers/group_timeline_markers_overlay.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ export function renderGroupTimelineMarkers({
126126

127127
elements.push(
128128
<VictoryLine
129+
key={`${marker.id}-line`}
129130
data={[
130131
{ x: marker.timestamp, y: yMin },
131132
{ x: marker.timestamp, y: yMax },
@@ -143,6 +144,7 @@ export function renderGroupTimelineMarkers({
143144

144145
elements.push(
145146
<VictoryScatter
147+
key={`${marker.id}-point`}
146148
data={[
147149
{
148150
x: marker.timestamp,

0 commit comments

Comments
 (0)