Skip to content

Commit a0f3cee

Browse files
committed
fix imports
1 parent 87027b6 commit a0f3cee

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

packages/pwa-kit-runtime/src/utils/ssr-server.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// This file is kept for backwards compatibility / simpler imports.
1313
export * from './ssr-server/cached-response'
1414
export * from './ssr-server/configure-proxy'
15+
export * from './ssr-server/data-store'
1516
export * from './ssr-server/metrics-sender'
1617
export * from './ssr-server/outgoing-request-hook'
1718
export * from './ssr-server/parse-end-parameters'

packages/pwa-kit-runtime/src/utils/ssr-server/data-store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import {DynamoDBClient} from '@aws-sdk/client-dynamodb'
88
import {DynamoDBDocumentClient, GetCommand} from '@aws-sdk/lib-dynamodb'
99

10-
import {isRemote, logMRTError} from './utils/utils'
10+
import {isRemote, logMRTError} from './utils'
1111

1212
export class DataStoreNotFoundError extends Error {
1313
constructor(message) {

packages/template-mrt-reference-app/app/ssr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const {
4747
DataStoreNotFoundError,
4848
DataStoreServiceError,
4949
DataStoreUnavailableError
50-
} = require('@salesforce/pwa-kit-runtime/ssr/utils/ssr-server/data-store')
50+
} = require('@salesforce/pwa-kit-runtime/utils/ssr-server/data-store')
5151

5252
const {isolationTests} = require('./isolation-actions')
5353
const pkg = require('../package.json')

0 commit comments

Comments
 (0)