@@ -32,7 +32,7 @@ import { ONE_HOUR_IN_MS, TWO_HOURS_IN_MS } from './pure/time';
3232import { assertNever , getErrorMessage , getErrorStack } from './pure/helpers-pure' ;
3333import { CompletedLocalQueryInfo , LocalQueryInfo as LocalQueryInfo , QueryHistoryInfo } from './query-results' ;
3434import { DatabaseManager } from './databases' ;
35- import { registerQueryHistoryScubber } from './query-history-scrubber' ;
35+ import { registerQueryHistoryScrubber } from './query-history-scrubber' ;
3636import { QueryStatus } from './query-status' ;
3737import { slurpQueryHistory , splatQueryHistory } from './query-serialization' ;
3838import * as fs from 'fs-extra' ;
@@ -573,7 +573,7 @@ export class QueryHistoryManager extends DisposableObject {
573573 this . queryHistoryScrubber ?. dispose ( ) ;
574574 // Every hour check if we need to re-run the query history scrubber.
575575 this . queryHistoryScrubber = this . push (
576- registerQueryHistoryScubber (
576+ registerQueryHistoryScrubber (
577577 ONE_HOUR_IN_MS ,
578578 TWO_HOURS_IN_MS ,
579579 queryHistoryConfigListener . ttlInMillis ,
@@ -795,7 +795,7 @@ export class QueryHistoryManager extends DisposableObject {
795795 throw new Error ( 'Please select a local query.' ) ;
796796 }
797797
798- if ( ! finalSingleItem . completedQuery ?. sucessful ) {
798+ if ( ! finalSingleItem . completedQuery ?. successful ) {
799799 throw new Error ( 'Please select a query that has completed successfully.' ) ;
800800 }
801801
@@ -1236,7 +1236,7 @@ the file in the file explorer and dragging it into the workspace.`
12361236 if ( ! otherQuery . completedQuery ) {
12371237 throw new Error ( 'Please select a completed query.' ) ;
12381238 }
1239- if ( ! otherQuery . completedQuery . sucessful ) {
1239+ if ( ! otherQuery . completedQuery . successful ) {
12401240 throw new Error ( 'Please select a successful query.' ) ;
12411241 }
12421242 if ( otherQuery . initialInfo . databaseInfo . name !== dbName ) {
@@ -1256,7 +1256,7 @@ the file in the file explorer and dragging it into the workspace.`
12561256 otherQuery !== singleItem &&
12571257 otherQuery . t === 'local' &&
12581258 otherQuery . completedQuery &&
1259- otherQuery . completedQuery . sucessful &&
1259+ otherQuery . completedQuery . successful &&
12601260 otherQuery . initialInfo . databaseInfo . name === dbName
12611261 )
12621262 . map ( ( item ) => ( {
0 commit comments