dce-reactkit 3.6.6 → 3.6.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dce-reactkit",
3
- "version": "3.6.6",
3
+ "version": "3.6.7",
4
4
  "description": "Shared components for Harvard DCE apps",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -607,7 +607,11 @@ const AppWrapper: React.FC<Props> = (props: Props): React.ReactElement => {
607
607
  )}
608
608
  error={error}
609
609
  variant={errorBoxVariant}
610
- icon={faHourglassEnd}
610
+ icon={(
611
+ sessionHasExpired
612
+ ? faHourglassEnd
613
+ : undefined
614
+ )}
611
615
  />
612
616
  </div>
613
617
  );